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
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
from maleo.soma.schemas.parameter.service import (
|
|
2
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
3
|
+
ReadPaginatedMultipleParameterSchema,
|
|
4
|
+
)
|
|
5
|
+
from maleo.soma.mixins.parameter import (
|
|
6
|
+
OptionalListOfKeys,
|
|
7
|
+
OptionalListOfOrganizationIds,
|
|
8
|
+
)
|
|
9
|
+
from maleo.identity.mixins.organization_role import Expand
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class ReadMultipleFromOrganizationQueryParameter(
|
|
13
|
+
Expand,
|
|
14
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
15
|
+
OptionalListOfKeys,
|
|
16
|
+
):
|
|
17
|
+
pass
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ReadMultipleQueryParameter(
|
|
21
|
+
Expand,
|
|
22
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
23
|
+
OptionalListOfKeys,
|
|
24
|
+
OptionalListOfOrganizationIds,
|
|
25
|
+
):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class ReadMultipleParameter(
|
|
30
|
+
Expand,
|
|
31
|
+
ReadPaginatedMultipleParameterSchema,
|
|
32
|
+
OptionalListOfKeys,
|
|
33
|
+
OptionalListOfOrganizationIds,
|
|
34
|
+
):
|
|
35
|
+
pass
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
from maleo.soma.schemas.parameter.service import (
|
|
2
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
3
|
+
ReadPaginatedMultipleParameterSchema,
|
|
4
|
+
)
|
|
5
|
+
from maleo.soma.mixins.parameter import (
|
|
6
|
+
OptionalListOfIds,
|
|
7
|
+
OptionalListOfUuids,
|
|
8
|
+
)
|
|
9
|
+
from maleo.metadata.schemas.data.blood_type import OptionalListOfSimpleBloodTypesMixin
|
|
10
|
+
from maleo.metadata.schemas.data.gender import OptionalListOfSimpleGendersMixin
|
|
11
|
+
from maleo.metadata.schemas.data.user_type import OptionalListOfSimpleUserTypesMixin
|
|
12
|
+
from maleo.identity.mixins.user import (
|
|
13
|
+
OptionalListOfUsernames,
|
|
14
|
+
OptionalListOfEmails,
|
|
15
|
+
OptionalListOfPhones,
|
|
16
|
+
Expand,
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class ReadMultipleQueryParameter(
|
|
21
|
+
Expand,
|
|
22
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
23
|
+
OptionalListOfSimpleBloodTypesMixin,
|
|
24
|
+
OptionalListOfSimpleGendersMixin,
|
|
25
|
+
OptionalListOfPhones,
|
|
26
|
+
OptionalListOfEmails,
|
|
27
|
+
OptionalListOfUsernames,
|
|
28
|
+
OptionalListOfSimpleUserTypesMixin,
|
|
29
|
+
OptionalListOfUuids,
|
|
30
|
+
OptionalListOfIds,
|
|
31
|
+
):
|
|
32
|
+
pass
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class ReadMultipleParameter(
|
|
36
|
+
Expand,
|
|
37
|
+
ReadPaginatedMultipleParameterSchema,
|
|
38
|
+
OptionalListOfSimpleBloodTypesMixin,
|
|
39
|
+
OptionalListOfSimpleGendersMixin,
|
|
40
|
+
OptionalListOfPhones,
|
|
41
|
+
OptionalListOfEmails,
|
|
42
|
+
OptionalListOfUsernames,
|
|
43
|
+
OptionalListOfSimpleUserTypesMixin,
|
|
44
|
+
OptionalListOfUuids,
|
|
45
|
+
OptionalListOfIds,
|
|
46
|
+
):
|
|
47
|
+
pass
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
from maleo.soma.mixins.parameter import (
|
|
2
|
+
OptionalListOfKeys,
|
|
3
|
+
OptionalListOfOrganizationIds,
|
|
4
|
+
OptionalListOfUserIds,
|
|
5
|
+
)
|
|
6
|
+
from maleo.soma.schemas.parameter.service import (
|
|
7
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
8
|
+
ReadPaginatedMultipleParameterSchema,
|
|
9
|
+
)
|
|
10
|
+
from maleo.identity.mixins.user_organization_role import Expand
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class ReadMultipleFromUserOrganizationQueryParameter(
|
|
14
|
+
Expand, ReadPaginatedMultipleQueryParameterSchema, OptionalListOfKeys
|
|
15
|
+
):
|
|
16
|
+
pass
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class ReadMultipleQueryParameter(
|
|
20
|
+
Expand,
|
|
21
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
22
|
+
OptionalListOfKeys,
|
|
23
|
+
OptionalListOfUserIds,
|
|
24
|
+
OptionalListOfOrganizationIds,
|
|
25
|
+
):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class ReadMultipleParameter(
|
|
30
|
+
Expand,
|
|
31
|
+
ReadPaginatedMultipleParameterSchema,
|
|
32
|
+
OptionalListOfKeys,
|
|
33
|
+
OptionalListOfUserIds,
|
|
34
|
+
OptionalListOfOrganizationIds,
|
|
35
|
+
):
|
|
36
|
+
pass
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from maleo.soma.mixins.parameter import OptionalListOfUserIds
|
|
2
|
+
from maleo.soma.schemas.parameter.service import (
|
|
3
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
4
|
+
ReadPaginatedMultipleParameterSchema,
|
|
5
|
+
)
|
|
6
|
+
from maleo.metadata.schemas.data.blood_type import OptionalListOfSimpleBloodTypesMixin
|
|
7
|
+
from maleo.metadata.schemas.data.gender import OptionalListOfSimpleGendersMixin
|
|
8
|
+
from maleo.identity.mixins.user_profile import Expand
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ReadMultipleQueryParameter(
|
|
12
|
+
Expand,
|
|
13
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
14
|
+
OptionalListOfSimpleBloodTypesMixin,
|
|
15
|
+
OptionalListOfSimpleGendersMixin,
|
|
16
|
+
OptionalListOfUserIds,
|
|
17
|
+
):
|
|
18
|
+
pass
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class ReadMultipleParameter(
|
|
22
|
+
Expand,
|
|
23
|
+
ReadPaginatedMultipleParameterSchema,
|
|
24
|
+
OptionalListOfSimpleBloodTypesMixin,
|
|
25
|
+
OptionalListOfSimpleGendersMixin,
|
|
26
|
+
OptionalListOfUserIds,
|
|
27
|
+
):
|
|
28
|
+
pass
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
from maleo.soma.mixins.parameter import OptionalListOfUserIds
|
|
2
|
+
from maleo.soma.schemas.parameter.service import (
|
|
3
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
4
|
+
ReadPaginatedMultipleParameterSchema,
|
|
5
|
+
)
|
|
6
|
+
from maleo.metadata.schemas.data.system_role import OptionalSimpleSystemRoleMixin
|
|
7
|
+
from maleo.identity.mixins.user_system_role import Expand
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class ReadMultipleFromuserQueryParameter(
|
|
11
|
+
Expand, ReadPaginatedMultipleQueryParameterSchema, OptionalSimpleSystemRoleMixin
|
|
12
|
+
):
|
|
13
|
+
pass
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class ReadMultipleQueryParameter(
|
|
17
|
+
Expand,
|
|
18
|
+
ReadPaginatedMultipleQueryParameterSchema,
|
|
19
|
+
OptionalSimpleSystemRoleMixin,
|
|
20
|
+
OptionalListOfUserIds,
|
|
21
|
+
):
|
|
22
|
+
pass
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class ReadMultipleParameter(
|
|
26
|
+
Expand,
|
|
27
|
+
ReadPaginatedMultipleParameterSchema,
|
|
28
|
+
OptionalSimpleSystemRoleMixin,
|
|
29
|
+
OptionalListOfUserIds,
|
|
30
|
+
):
|
|
31
|
+
pass
|
|
File without changes
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maleo-identity
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.77
|
|
4
4
|
Summary: MaleoIdentity service package
|
|
5
5
|
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
Requires-Python: >=3.7
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
-
Requires-Dist:
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.
|
|
9
|
+
Requires-Dist: maleo_soma>=0.1.58
|
|
10
|
+
Requires-Dist: maleo_metadata>=0.2.15
|
|
11
11
|
|
|
12
12
|
# README #
|
|
13
13
|
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
maleo/identity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
maleo/identity/db.py,sha256=MuDGpv3p7jn0RuFcM9Y9q1Z6dUn67TxOfrktzgAQZFE,83
|
|
3
|
+
maleo/identity/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
maleo/identity/client/manager.py,sha256=-BbDq0vAWf80olT-NOj5sA2C4Fl8q22kM40VIpR1uBQ,6488
|
|
5
|
+
maleo/identity/client/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
maleo/identity/client/services/organization.py,sha256=iTL_qFByNbbzrfKJQzj08NxWDW-0ar8ql3J8FUQ2p1s,79345
|
|
7
|
+
maleo/identity/client/services/organization_registration_code.py,sha256=BYf28qKJhQ6mAVk1tqtV0psIbyIbZOhxdDTjpt5ysq0,18618
|
|
8
|
+
maleo/identity/client/services/organization_role.py,sha256=OD1dEGEYfAydnnVObj6p0zcd-4LZrn3wiLFGpWTJzsw,10763
|
|
9
|
+
maleo/identity/client/services/user.py,sha256=1JmEVWNhechcU01EnJ9xlvKy7VwJSFLyrGk6uscAFY4,63209
|
|
10
|
+
maleo/identity/client/services/user_organization.py,sha256=kWCudeCypaewyFVktu2xwJcxzGvdhdjBrOsFo7CAhzU,10763
|
|
11
|
+
maleo/identity/client/services/user_organization_role.py,sha256=VsNtOOPSEYXummkPLrBRgw8C8aBOg9ZPXVmPkdliD24,10843
|
|
12
|
+
maleo/identity/client/services/user_profile.py,sha256=H7OoEv6Eih6NTce_yvpoWFdvcXH2xnC8UMt5HCbAqlM,10683
|
|
13
|
+
maleo/identity/client/services/user_system_role.py,sha256=J6TILaWc0dAW0kInr-WH_W-GPhkejBj9w8uZmPs3GU0,10738
|
|
14
|
+
maleo/identity/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
maleo/identity/constants/organization.py,sha256=x4OmDGg53pYQ3ZvsIaPOeNAd9FMPDBkAjxxnXxBQEi0,617
|
|
16
|
+
maleo/identity/constants/organization_registration_code.py,sha256=ipSRiNI6cXKncVH7jXWhJoL2HctfmqEFVx3M8GO-JLM,788
|
|
17
|
+
maleo/identity/constants/organization_role.py,sha256=9-fTGla-HVXdozc4VuHyf8_OJ60MpZFdB7_GQXPxwQw,1158
|
|
18
|
+
maleo/identity/constants/user.py,sha256=cQ7ThRMaldczONTx-TUdeZqaQJegJ2zD4F_8Y3Eme7A,859
|
|
19
|
+
maleo/identity/constants/user_organization.py,sha256=t_Ds-35ArjA_IGqfQ6k3nXzUWHIe1MkJflbfJ2b7PlA,2246
|
|
20
|
+
maleo/identity/constants/user_organization_role.py,sha256=JQL_3HQsVd3gMAFn7xb6wej3zEeW2tXYsYL1uBVyb0g,1718
|
|
21
|
+
maleo/identity/constants/user_profile.py,sha256=dUIfIrvBeRzLu7EktN4a_vETkvM0ifu-dGe2Eocy_rs,779
|
|
22
|
+
maleo/identity/constants/user_system_role.py,sha256=kyn8YjZM24tX6X7ftmgFjuOTIMcQXs1XPEBePsnmkTQ,472
|
|
23
|
+
maleo/identity/dtos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
+
maleo/identity/dtos/organization_registration_code.py,sha256=xaS-vVNQcaAZpjXoSa_RNSz3zLaPbOkD-BhPMvfJ3W4,313
|
|
25
|
+
maleo/identity/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
+
maleo/identity/enums/general.py,sha256=jR831PHPLErbT224_bKDvIHYFND0hF6yvN9cma58Vp8,82
|
|
27
|
+
maleo/identity/enums/organization.py,sha256=dFA1Ska3SxCTd8qegz9bzMdlPbzsOJm0xadDffcviTk,228
|
|
28
|
+
maleo/identity/enums/organization_registration_code.py,sha256=g4AOcf2aN36LCjA1GZEfwSSReKXsYRAZ-nrvTuVxXOk,148
|
|
29
|
+
maleo/identity/enums/organization_role.py,sha256=NQuFLyv-pHnMBNNDGPN_7EFz3vxvTNuvi_xR4s3Yt14,207
|
|
30
|
+
maleo/identity/enums/user.py,sha256=UBLek1aJUPnZNyPMSaHKDPbtvvbbOursBGycr6g8ad8,385
|
|
31
|
+
maleo/identity/enums/user_organization.py,sha256=q9weTEryo2OEy0XUVXwcjNX1TsdiT-ajXbIDcuqaRI8,440
|
|
32
|
+
maleo/identity/enums/user_organization_role.py,sha256=eRKwJ1_FighU2iOdnvN_2ZUvRHHIA2DWn-0ip3Ls10I,494
|
|
33
|
+
maleo/identity/enums/user_profile.py,sha256=2AR_m2nf3lksz0DSr-C-1gaWAYgYbpbou4ILyYsO4UM,297
|
|
34
|
+
maleo/identity/enums/user_system_role.py,sha256=bmaHE6f1RoxavUhl1bR8_dL9KF_4DftohvOLHMvwg-g,91
|
|
35
|
+
maleo/identity/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
maleo/identity/mixins/organization.py,sha256=TWL7hIp7uvE5UD_3FpEXJvpJVhXki_yIHEoS552MsxQ,418
|
|
37
|
+
maleo/identity/mixins/organization_registration_code.py,sha256=nP95ALUtSYL4e_Xha1C8hXge742A01rtMUqfL8SRQAQ,342
|
|
38
|
+
maleo/identity/mixins/organization_role.py,sha256=NucG_TmWeKtpUoylZ2CzLjUPTHOFIAWJhKR22a0Z8hA,431
|
|
39
|
+
maleo/identity/mixins/user.py,sha256=WzSztOq6W7sFci_cEd3nCN_UalJfozzhbB4r1TuYcsw,1346
|
|
40
|
+
maleo/identity/mixins/user_organization.py,sha256=KiWWzCpoajYmN79DmO21a1J_NLhQfgAtIyLsf08JF2c,182
|
|
41
|
+
maleo/identity/mixins/user_organization_role.py,sha256=WmEHsLZOnyebcflXiIZmPkqK-dTjSXWN3vxWpZtBFZg,187
|
|
42
|
+
maleo/identity/mixins/user_profile.py,sha256=bzRx7ix2A_UxrzP_Mb_mlJNhlf1Hz7oY4ZsG4qzdEZk,2152
|
|
43
|
+
maleo/identity/mixins/user_system_role.py,sha256=KyOefWg1FYshiBE5nmrytFGOJnKXwiCVEoNhzWOaM6k,181
|
|
44
|
+
maleo/identity/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
maleo/identity/models/organization.py,sha256=g4SjhPkP-IQAs29pfACt4lpi8TkMVhilfmEJFSPcuXA,2020
|
|
46
|
+
maleo/identity/models/organization_registration_code.py,sha256=zTWVIwwQuXH4S9hsTZ_wuMV7nEd_v-2BIyv85lSPRJw,1111
|
|
47
|
+
maleo/identity/models/organization_role.py,sha256=47hgWuJFeRKaVoLrI6mJtd2TrEVAnl2-kjgvdtv3r3c,1226
|
|
48
|
+
maleo/identity/models/user.py,sha256=O-98sIrmfqAGVWrKD5KhijRIuQ7MD7CBAeY9ckTzux0,1287
|
|
49
|
+
maleo/identity/models/user_organization.py,sha256=5l28DHEq7hlBYsBXBP1OHcqnn7WqQhcjDfJC-aWDgFc,1281
|
|
50
|
+
maleo/identity/models/user_organization_role.py,sha256=wwAJJY_7KwMx-sEWmfbnd9lNyxDDCcWmGpyVg9WtmC4,1866
|
|
51
|
+
maleo/identity/models/user_profile.py,sha256=_coKr4N069ON0VRrA4VdA9W8qzQWS6-BOpJWwN_vKSE,1557
|
|
52
|
+
maleo/identity/models/user_system_role.py,sha256=TtyQRO_OE9kbRDNprPQc-2Vc0tP3cY7nlR014ptRC7s,855
|
|
53
|
+
maleo/identity/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
+
maleo/identity/schemas/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
+
maleo/identity/schemas/data/organization.py,sha256=3cCZ6AX4r7VeW9ybaiFfq6mfpY84dnFreetP77Wv_vE,1053
|
|
56
|
+
maleo/identity/schemas/data/organization_registration_code.py,sha256=VZB9MIGWOlnGwISmkMJ0TUlcVQYhJ4hqnHQFrT-Z5aI,902
|
|
57
|
+
maleo/identity/schemas/data/organization_role.py,sha256=LKqLNdZ5dMxF_Wb4x7MozsAZKFQIt2aLatZdcuhex3Q,879
|
|
58
|
+
maleo/identity/schemas/data/user.py,sha256=jZypPr7IN2ccOd2sqWm0mDBKd5e4djwMTjpVwoG4ED4,908
|
|
59
|
+
maleo/identity/schemas/data/user_organization.py,sha256=BBgBhGk2ADMuzubyNuEHh-gfo5orU_YnYxEy9F6Qg6s,593
|
|
60
|
+
maleo/identity/schemas/data/user_organization_role.py,sha256=F_9f3JmoeQeXsTWlMUUwXkI5jGZbAKHQ6A4Y4py2YpU,414
|
|
61
|
+
maleo/identity/schemas/data/user_profile.py,sha256=tDSe_6HWFJ9wIBGi0qhgW1k2uL5mXnhhATFPF5V3Pd0,1345
|
|
62
|
+
maleo/identity/schemas/data/user_system_role.py,sha256=ShlShEpAi3YZF_WYu2EbYvlR1r1KtvgSwKwdXLte4bs,640
|
|
63
|
+
maleo/identity/schemas/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
maleo/identity/schemas/metadata/user.py,sha256=or2OucbCiTquOtgWliVD0q_HWifBiDNJghxaymFxbzs,208
|
|
65
|
+
maleo/identity/schemas/parameter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
+
maleo/identity/schemas/parameter/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
67
|
+
maleo/identity/schemas/parameter/client/organization.py,sha256=Gmi3kfSqygqRm35E1IqQPKKq15uwW1-z71ORpT_z6x0,1674
|
|
68
|
+
maleo/identity/schemas/parameter/client/organization_registration_code.py,sha256=oafDNzk0DA2l6VlVgOJl8xKc_pzE3D50O_vaN9OeJsI,620
|
|
69
|
+
maleo/identity/schemas/parameter/client/organization_role.py,sha256=ZGwbUtfguQt_zOvn7tz_Z4tvMOkIp-nESp1ZlXJWK14,969
|
|
70
|
+
maleo/identity/schemas/parameter/client/user.py,sha256=_Kn5JtAR7oKuy1H-LqmvJVuB3To5dzel-pZSbRshioo,1308
|
|
71
|
+
maleo/identity/schemas/parameter/client/user_organization.py,sha256=osWE0RQ5Uo_1sCtIAH8a0sAMyMvaD8eGd-hAdTUUYho,1307
|
|
72
|
+
maleo/identity/schemas/parameter/client/user_organization_role.py,sha256=kg4JhC5yCAFGP4mufCPTWeCUyG2K5fDF5s-JZ69vNBc,1096
|
|
73
|
+
maleo/identity/schemas/parameter/client/user_profile.py,sha256=ZI6FBHnHNY2kGLg10TDfyMfi7YdkcegpXIzHtbcUL-M,840
|
|
74
|
+
maleo/identity/schemas/parameter/client/user_system_role.py,sha256=vwXBLB7cUVs9FpPy2hFurfNTrKTPZzvaIYYgy574Yik,1053
|
|
75
|
+
maleo/identity/schemas/parameter/general/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
+
maleo/identity/schemas/parameter/general/organization.py,sha256=sKsDbwo_hOQO_LSaQqkkalwswGsiOsOEOCDEOi9Hv9s,1118
|
|
77
|
+
maleo/identity/schemas/parameter/general/organization_registration_code.py,sha256=_F0Imo1Caf_9oGx-nwMnotfkBOSzmdZKvYZUu_IUSxI,817
|
|
78
|
+
maleo/identity/schemas/parameter/general/organization_role.py,sha256=jxNZsLyI2F0v_dntw6XGKchL06RCCQP2LCdzQvvihG0,468
|
|
79
|
+
maleo/identity/schemas/parameter/general/user.py,sha256=9r1xLT67q-TGrn_MsNld-VgQkOlDmcEJDT81-3Hb2ZQ,2155
|
|
80
|
+
maleo/identity/schemas/parameter/general/user_organization.py,sha256=11xtngCkoBa-D3qHhsdfrZM6iWVAH6oPi-gbJDx3xvA,540
|
|
81
|
+
maleo/identity/schemas/parameter/general/user_organization_role.py,sha256=nrgsblXxt-wQBgy4TUVAwD70b1zUsIboEPQQFKxGxDU,540
|
|
82
|
+
maleo/identity/schemas/parameter/general/user_profile.py,sha256=KDidE_-W-7W-tR_dSCBxbDWfhoqs62ZGWHLAYF3HYks,1739
|
|
83
|
+
maleo/identity/schemas/parameter/general/user_system_role.py,sha256=bxIXMJhT05yBGWzItU00BYvZDXC0_oS2J4igmT4ePbA,654
|
|
84
|
+
maleo/identity/schemas/parameter/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
+
maleo/identity/schemas/parameter/service/organization.py,sha256=VDBYtppFnqGaCB-To04OTESsI576IcOEP_n-S_pPHi4,1388
|
|
86
|
+
maleo/identity/schemas/parameter/service/organization_registration_code.py,sha256=XFy7k1K3NpYFjnEtT-XZQfFBJHduWU5OucJexquxPos,567
|
|
87
|
+
maleo/identity/schemas/parameter/service/organization_role.py,sha256=714Y2jlgNjE_GJZwaDcbzYSObpZptPazJAQLWBy8vIQ,773
|
|
88
|
+
maleo/identity/schemas/parameter/service/user.py,sha256=u_ZhVLkF_67GC2x_CpsM9Nl3KcszI4zu3AImyNXAfGo,1322
|
|
89
|
+
maleo/identity/schemas/parameter/service/user_organization_role.py,sha256=hlS-6qbdDBLKJVWgXIz3vRgWmm1EoFqkiPijEYoRcao,854
|
|
90
|
+
maleo/identity/schemas/parameter/service/user_profile.py,sha256=1hLZAkqncLzMJv282rO1vU_5GGH-i9rB6xGyHSnZFvg,841
|
|
91
|
+
maleo/identity/schemas/parameter/service/user_system_role.py,sha256=aZex0fono0R6lmuwSWAcy5eOp9WXDC0URc6XviguD58,813
|
|
92
|
+
maleo/identity/types/__init__.py,sha256=j7VaaIXILg7pxte4lDkLbmGmSAHGcI2MMJ24aSBx-78,115
|
|
93
|
+
maleo/identity/types/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
+
maleo/identity/types/base/organization.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
|
|
95
|
+
maleo/identity/types/base/organization_registration_code.py,sha256=V8cct7fTIO-OT7RoYuui__oblyIUzFdQWOwHfhflpUc,87
|
|
96
|
+
maleo/identity/types/base/user.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
|
|
97
|
+
maleo/identity/types/base/user_profile.py,sha256=E81XLbjJ8szrnPRA09VILrr4at4mKWJLeGOfYWLnWPQ,65
|
|
98
|
+
maleo_identity-0.0.77.dist-info/METADATA,sha256=_oPLzRTMfGwbzRxGUo7ENckQINdeY70KtW--yUJuW-E,862
|
|
99
|
+
maleo_identity-0.0.77.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
100
|
+
maleo_identity-0.0.77.dist-info/top_level.txt,sha256=3Tpd1siVsfYoeI9FEOJNYnffx_shzZ3wsPpTvz5bljc,6
|
|
101
|
+
maleo_identity-0.0.77.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
maleo
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from pydantic import Field
|
|
3
|
-
from maleo_foundation.managers.client.base import ClientServiceControllers, ClientControllers
|
|
4
|
-
|
|
5
|
-
from maleo_identity.client.controllers.http.organization \
|
|
6
|
-
import MaleoIdentityOrganizationHTTPController
|
|
7
|
-
class MaleoIdentityOrganizationControllers(ClientServiceControllers):
|
|
8
|
-
http:MaleoIdentityOrganizationHTTPController = Field(..., description="Organization's http controller")
|
|
9
|
-
|
|
10
|
-
from maleo_identity.client.controllers.http.user \
|
|
11
|
-
import MaleoIdentityUserHTTPController
|
|
12
|
-
class MaleoIdentityUserControllers(ClientServiceControllers):
|
|
13
|
-
http:MaleoIdentityUserHTTPController = Field(..., description="User's http controller")
|
|
14
|
-
|
|
15
|
-
class MaleoIdentityControllers(ClientControllers):
|
|
16
|
-
organization:MaleoIdentityOrganizationControllers = Field(..., description="Organization's controllers")
|
|
17
|
-
user:MaleoIdentityUserControllers = Field(..., description="User's controllers")
|