maleo-identity 0.0.85__py3-none-any.whl → 0.1.24__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- maleo/identity/constants/api_key.py +13 -0
- maleo/identity/constants/organization.py +3 -10
- maleo/identity/constants/organization_registration_code.py +5 -17
- maleo/identity/constants/organization_relation.py +13 -0
- maleo/identity/constants/patient.py +7 -0
- maleo/identity/constants/user.py +3 -20
- maleo/identity/constants/user_medical_role.py +13 -0
- maleo/identity/constants/user_organization_role.py +5 -39
- maleo/identity/constants/user_profile.py +3 -21
- maleo/identity/constants/user_system_role.py +9 -8
- maleo/identity/enums/api_key.py +25 -0
- maleo/identity/enums/organization.py +16 -3
- maleo/identity/enums/organization_registration_code.py +9 -0
- maleo/identity/enums/organization_relation.py +22 -0
- maleo/identity/enums/patient.py +29 -0
- maleo/identity/enums/user.py +16 -7
- maleo/identity/enums/user_medical_role.py +22 -0
- maleo/identity/enums/user_organization_role.py +19 -12
- maleo/identity/enums/user_profile.py +7 -9
- maleo/identity/enums/user_system_role.py +30 -0
- maleo/identity/mixins/api_key.py +72 -0
- maleo/identity/mixins/common.py +29 -0
- maleo/identity/mixins/organization.py +68 -8
- maleo/identity/mixins/organization_registration_code.py +126 -9
- maleo/identity/mixins/organization_relation.py +80 -0
- maleo/identity/mixins/patient.py +65 -0
- maleo/identity/mixins/user.py +86 -24
- maleo/identity/mixins/user_medical_role.py +68 -0
- maleo/identity/mixins/user_organization_role.py +68 -4
- maleo/identity/mixins/user_profile.py +84 -53
- maleo/identity/mixins/user_system_role.py +72 -4
- maleo/identity/schemas/api_key.py +171 -0
- maleo/identity/schemas/common.py +335 -0
- maleo/identity/schemas/organization.py +311 -0
- maleo/identity/schemas/organization_registration_code.py +314 -0
- maleo/identity/schemas/organization_relation.py +315 -0
- maleo/identity/schemas/patient.py +349 -0
- maleo/identity/schemas/user.py +318 -0
- maleo/identity/schemas/user_medical_role.py +316 -0
- maleo/identity/schemas/user_organization_role.py +317 -0
- maleo/identity/schemas/user_profile.py +362 -0
- maleo/identity/schemas/user_system_role.py +339 -0
- maleo/identity/types/api_key.py +7 -0
- maleo/identity/types/organization.py +4 -0
- maleo/identity/types/organization_registration_code.py +4 -0
- maleo/identity/types/organization_relation.py +7 -0
- maleo/identity/types/patient.py +4 -0
- maleo/identity/types/user.py +4 -0
- maleo/identity/types/user_medical_role.py +7 -0
- maleo/identity/types/user_organization_role.py +7 -0
- maleo/identity/types/user_profile.py +4 -0
- maleo/identity/types/user_system_role.py +8 -0
- maleo/identity/utils/organization.py +32 -0
- maleo/identity/utils/user.py +32 -0
- maleo_identity-0.1.24.dist-info/METADATA +119 -0
- maleo_identity-0.1.24.dist-info/RECORD +66 -0
- maleo_identity-0.1.24.dist-info/licenses/LICENSE +57 -0
- maleo/identity/client/manager.py +0 -157
- maleo/identity/client/services/__init__.py +0 -0
- maleo/identity/client/services/organization.py +0 -1944
- maleo/identity/client/services/organization_registration_code.py +0 -470
- maleo/identity/client/services/organization_role.py +0 -276
- maleo/identity/client/services/user.py +0 -1559
- maleo/identity/client/services/user_organization.py +0 -276
- maleo/identity/client/services/user_organization_role.py +0 -278
- maleo/identity/client/services/user_profile.py +0 -276
- maleo/identity/client/services/user_system_role.py +0 -276
- maleo/identity/constants/organization_role.py +0 -35
- maleo/identity/constants/user_organization.py +0 -58
- maleo/identity/db.py +0 -4
- maleo/identity/dtos/__init__.py +0 -0
- maleo/identity/dtos/configuration.py +0 -15
- maleo/identity/dtos/data/__init__.py +0 -0
- maleo/identity/dtos/data/organization_registration_code.py +0 -15
- maleo/identity/dtos/data/user_profile.py +0 -29
- maleo/identity/dtos/settings.py +0 -17
- maleo/identity/enums/general.py +0 -5
- maleo/identity/enums/organization_role.py +0 -7
- maleo/identity/enums/user_organization.py +0 -14
- maleo/identity/mixins/organization_role.py +0 -15
- maleo/identity/mixins/user_organization.py +0 -6
- maleo/identity/models/__init__.py +0 -0
- maleo/identity/models/organization.py +0 -62
- maleo/identity/models/organization_registration_code.py +0 -33
- maleo/identity/models/organization_role.py +0 -37
- maleo/identity/models/user.py +0 -39
- maleo/identity/models/user_organization.py +0 -48
- maleo/identity/models/user_organization_role.py +0 -61
- maleo/identity/models/user_profile.py +0 -33
- maleo/identity/models/user_system_role.py +0 -26
- maleo/identity/schemas/data/__init__.py +0 -0
- maleo/identity/schemas/data/organization.py +0 -36
- maleo/identity/schemas/data/organization_registration_code.py +0 -27
- maleo/identity/schemas/data/organization_role.py +0 -32
- maleo/identity/schemas/data/user.py +0 -33
- maleo/identity/schemas/data/user_organization.py +0 -23
- maleo/identity/schemas/data/user_organization_role.py +0 -13
- maleo/identity/schemas/data/user_profile.py +0 -59
- maleo/identity/schemas/data/user_system_role.py +0 -25
- maleo/identity/schemas/metadata/__init__.py +0 -0
- maleo/identity/schemas/metadata/user.py +0 -6
- maleo/identity/schemas/parameter/__init__.py +0 -0
- maleo/identity/schemas/parameter/client/__init__.py +0 -0
- maleo/identity/schemas/parameter/client/organization.py +0 -74
- maleo/identity/schemas/parameter/client/organization_registration_code.py +0 -24
- maleo/identity/schemas/parameter/client/organization_role.py +0 -42
- maleo/identity/schemas/parameter/client/user.py +0 -44
- maleo/identity/schemas/parameter/client/user_organization.py +0 -62
- maleo/identity/schemas/parameter/client/user_organization_role.py +0 -49
- maleo/identity/schemas/parameter/client/user_profile.py +0 -28
- maleo/identity/schemas/parameter/client/user_system_role.py +0 -43
- maleo/identity/schemas/parameter/general/__init__.py +0 -0
- maleo/identity/schemas/parameter/general/organization.py +0 -43
- maleo/identity/schemas/parameter/general/organization_registration_code.py +0 -54
- maleo/identity/schemas/parameter/general/organization_role.py +0 -14
- maleo/identity/schemas/parameter/general/user.py +0 -101
- maleo/identity/schemas/parameter/general/user_organization.py +0 -18
- maleo/identity/schemas/parameter/general/user_organization_role.py +0 -15
- maleo/identity/schemas/parameter/general/user_profile.py +0 -70
- maleo/identity/schemas/parameter/general/user_system_role.py +0 -30
- maleo/identity/schemas/parameter/service/__init__.py +0 -0
- maleo/identity/schemas/parameter/service/organization.py +0 -60
- maleo/identity/schemas/parameter/service/organization_registration_code.py +0 -24
- maleo/identity/schemas/parameter/service/organization_role.py +0 -35
- maleo/identity/schemas/parameter/service/user.py +0 -47
- maleo/identity/schemas/parameter/service/user_organization_role.py +0 -36
- maleo/identity/schemas/parameter/service/user_profile.py +0 -28
- maleo/identity/schemas/parameter/service/user_system_role.py +0 -31
- maleo/identity/types/base/__init__.py +0 -0
- maleo/identity/types/base/organization.py +0 -5
- maleo/identity/types/base/organization_registration_code.py +0 -4
- maleo/identity/types/base/user.py +0 -5
- maleo/identity/types/base/user_profile.py +0 -5
- maleo_identity-0.0.85.dist-info/METADATA +0 -40
- maleo_identity-0.0.85.dist-info/RECORD +0 -105
- /maleo/identity/{client → utils}/__init__.py +0 -0
- {maleo_identity-0.0.85.dist-info → maleo_identity-0.1.24.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.85.dist-info → maleo_identity-0.1.24.dist-info}/top_level.txt +0 -0
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
from maleo.soma.mixins.general import OrganizationId, UserId
|
|
2
|
-
from maleo.soma.mixins.parameter import OptionalListOfDataStatuses, UseCache
|
|
3
|
-
from maleo.soma.schemas.parameter.general import ReadSingleQueryParameterSchema
|
|
4
|
-
from maleo.identity.mixins.user_organization import Expand
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class ReadSingleQueryParameter(Expand, ReadSingleQueryParameterSchema):
|
|
8
|
-
pass
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class ReadSingleParameter(
|
|
12
|
-
Expand, UseCache, OptionalListOfDataStatuses, OrganizationId, UserId
|
|
13
|
-
):
|
|
14
|
-
pass
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
class CreateParameter(Expand, UserId, OrganizationId):
|
|
18
|
-
pass
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
from maleo.soma.mixins.general import OrganizationId, UserId
|
|
2
|
-
from maleo.soma.mixins.parameter import OptionalListOfDataStatuses, UseCache
|
|
3
|
-
from maleo.soma.schemas.parameter.general import ReadSingleQueryParameterSchema
|
|
4
|
-
from maleo.identity.mixins.organization_role import Key
|
|
5
|
-
from maleo.identity.mixins.user_organization_role import Expand
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class ReadSingleQueryParameter(Expand, ReadSingleQueryParameterSchema):
|
|
9
|
-
pass
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class ReadSingleParameter(
|
|
13
|
-
Expand, UseCache, OptionalListOfDataStatuses, Key, OrganizationId, UserId
|
|
14
|
-
):
|
|
15
|
-
pass
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
from maleo.soma.mixins.general import UserId
|
|
2
|
-
from maleo.soma.mixins.parameter import IdentifierTypeValue as IdentifierTypeValueMixin
|
|
3
|
-
from maleo.soma.schemas.parameter.general import (
|
|
4
|
-
ReadSingleQueryParameterSchema,
|
|
5
|
-
ReadSingleParameterSchema,
|
|
6
|
-
)
|
|
7
|
-
from maleo.metadata.schemas.data.blood_type import OptionalSimpleBloodTypeMixin
|
|
8
|
-
from maleo.metadata.schemas.data.gender import OptionalSimpleGenderMixin
|
|
9
|
-
from maleo.identity.enums.user_profile import IdentifierType
|
|
10
|
-
from maleo.identity.mixins.user_profile import (
|
|
11
|
-
Expand,
|
|
12
|
-
OptionalIdCard,
|
|
13
|
-
LeadingTitle,
|
|
14
|
-
FirstName,
|
|
15
|
-
MiddleName,
|
|
16
|
-
LastName,
|
|
17
|
-
EndingTitle,
|
|
18
|
-
BirthPlace,
|
|
19
|
-
BirthDate,
|
|
20
|
-
OptionalAvatarName,
|
|
21
|
-
AvatarData,
|
|
22
|
-
)
|
|
23
|
-
from maleo.identity.types.base.user_profile import IdentifierValueType
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
class ReadSingleQueryParameter(
|
|
27
|
-
Expand,
|
|
28
|
-
ReadSingleQueryParameterSchema,
|
|
29
|
-
):
|
|
30
|
-
pass
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
class ReadSingleParameter(
|
|
34
|
-
Expand, ReadSingleParameterSchema[IdentifierType, IdentifierValueType]
|
|
35
|
-
):
|
|
36
|
-
pass
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
class CreateOrUpdateQuery(Expand):
|
|
40
|
-
pass
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
class CreateOrUpdateBody(
|
|
44
|
-
OptionalAvatarName,
|
|
45
|
-
OptionalSimpleGenderMixin,
|
|
46
|
-
OptionalSimpleBloodTypeMixin,
|
|
47
|
-
BirthDate,
|
|
48
|
-
BirthPlace,
|
|
49
|
-
EndingTitle,
|
|
50
|
-
LastName,
|
|
51
|
-
MiddleName,
|
|
52
|
-
FirstName,
|
|
53
|
-
LeadingTitle,
|
|
54
|
-
OptionalIdCard,
|
|
55
|
-
UserId,
|
|
56
|
-
):
|
|
57
|
-
pass
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
class CreateParameter(AvatarData, CreateOrUpdateBody, CreateOrUpdateQuery):
|
|
61
|
-
pass
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
class UpdateParameter(
|
|
65
|
-
AvatarData,
|
|
66
|
-
CreateOrUpdateBody,
|
|
67
|
-
CreateOrUpdateQuery,
|
|
68
|
-
IdentifierTypeValueMixin[IdentifierType, IdentifierValueType],
|
|
69
|
-
):
|
|
70
|
-
pass
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
from maleo.soma.mixins.general import UserId
|
|
2
|
-
from maleo.soma.mixins.parameter import OptionalListOfDataStatuses, UseCache
|
|
3
|
-
from maleo.soma.schemas.parameter.general import ReadSingleQueryParameterSchema
|
|
4
|
-
from maleo.metadata.schemas.data.system_role import SimpleSystemRoleMixin
|
|
5
|
-
from maleo.identity.mixins.user_system_role import Expand
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class ReadSingleQueryParameter(
|
|
9
|
-
Expand,
|
|
10
|
-
ReadSingleQueryParameterSchema,
|
|
11
|
-
):
|
|
12
|
-
pass
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class ReadSingleParameter(
|
|
16
|
-
Expand,
|
|
17
|
-
UseCache,
|
|
18
|
-
OptionalListOfDataStatuses,
|
|
19
|
-
SimpleSystemRoleMixin,
|
|
20
|
-
UserId,
|
|
21
|
-
):
|
|
22
|
-
pass
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class CreateParameter(
|
|
26
|
-
Expand,
|
|
27
|
-
SimpleSystemRoleMixin,
|
|
28
|
-
UserId,
|
|
29
|
-
):
|
|
30
|
-
pass
|
|
File without changes
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
from maleo.soma.mixins.general import IsRoot, IsParent, IsChild, IsLeaf
|
|
2
|
-
from maleo.soma.mixins.parameter import (
|
|
3
|
-
OptionalListOfIds,
|
|
4
|
-
OptionalListOfKeys,
|
|
5
|
-
OptionalListOfParentIds,
|
|
6
|
-
OptionalListOfUuids,
|
|
7
|
-
)
|
|
8
|
-
from maleo.soma.schemas.parameter.service import (
|
|
9
|
-
ReadPaginatedMultipleQueryParameterSchema,
|
|
10
|
-
ReadPaginatedMultipleParameterSchema,
|
|
11
|
-
)
|
|
12
|
-
from maleo.metadata.schemas.data.organization_type import (
|
|
13
|
-
OptionalListOfSimpleOrganizationTypesMixin,
|
|
14
|
-
)
|
|
15
|
-
from maleo.identity.mixins.organization import Expand
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
class ReadMultipleChildrenQueryParameter(
|
|
19
|
-
Expand,
|
|
20
|
-
ReadPaginatedMultipleQueryParameterSchema,
|
|
21
|
-
OptionalListOfKeys,
|
|
22
|
-
IsLeaf,
|
|
23
|
-
IsParent,
|
|
24
|
-
OptionalListOfSimpleOrganizationTypesMixin,
|
|
25
|
-
OptionalListOfUuids,
|
|
26
|
-
OptionalListOfIds,
|
|
27
|
-
):
|
|
28
|
-
pass
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
class ReadMultipleQueryParameter(
|
|
32
|
-
Expand,
|
|
33
|
-
ReadPaginatedMultipleQueryParameterSchema,
|
|
34
|
-
OptionalListOfKeys,
|
|
35
|
-
IsLeaf,
|
|
36
|
-
IsChild,
|
|
37
|
-
IsParent,
|
|
38
|
-
IsRoot,
|
|
39
|
-
OptionalListOfParentIds,
|
|
40
|
-
OptionalListOfSimpleOrganizationTypesMixin,
|
|
41
|
-
OptionalListOfUuids,
|
|
42
|
-
OptionalListOfIds,
|
|
43
|
-
):
|
|
44
|
-
pass
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
class ReadMultipleParameter(
|
|
48
|
-
Expand,
|
|
49
|
-
ReadPaginatedMultipleParameterSchema,
|
|
50
|
-
OptionalListOfKeys,
|
|
51
|
-
IsLeaf,
|
|
52
|
-
IsChild,
|
|
53
|
-
IsParent,
|
|
54
|
-
IsRoot,
|
|
55
|
-
OptionalListOfParentIds,
|
|
56
|
-
OptionalListOfSimpleOrganizationTypesMixin,
|
|
57
|
-
OptionalListOfUuids,
|
|
58
|
-
OptionalListOfIds,
|
|
59
|
-
):
|
|
60
|
-
pass
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
from maleo.soma.schemas.parameter.service import (
|
|
2
|
-
ReadPaginatedMultipleQueryParameterSchema,
|
|
3
|
-
ReadPaginatedMultipleParameterSchema,
|
|
4
|
-
)
|
|
5
|
-
from maleo.soma.mixins.parameter import OptionalListOfOrganizationIds
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class ReadMultipleFromOrganizationQueryParameter(
|
|
9
|
-
ReadPaginatedMultipleQueryParameterSchema
|
|
10
|
-
):
|
|
11
|
-
pass
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
class ReadMultipleQueryParameter(
|
|
15
|
-
ReadPaginatedMultipleQueryParameterSchema,
|
|
16
|
-
OptionalListOfOrganizationIds,
|
|
17
|
-
):
|
|
18
|
-
pass
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
class ReadMultipleParameter(
|
|
22
|
-
ReadPaginatedMultipleParameterSchema, OptionalListOfOrganizationIds
|
|
23
|
-
):
|
|
24
|
-
pass
|
|
@@ -1,35 +0,0 @@
|
|
|
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
|
|
@@ -1,47 +0,0 @@
|
|
|
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
|
|
@@ -1,36 +0,0 @@
|
|
|
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
|
|
@@ -1,28 +0,0 @@
|
|
|
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
|
|
@@ -1,31 +0,0 @@
|
|
|
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,40 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: maleo-identity
|
|
3
|
-
Version: 0.0.85
|
|
4
|
-
Summary: MaleoIdentity service package
|
|
5
|
-
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
|
-
License: MIT
|
|
7
|
-
Requires-Python: >=3.7
|
|
8
|
-
Description-Content-Type: text/markdown
|
|
9
|
-
Requires-Dist: maleo_soma>=0.1.85
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.2.41
|
|
11
|
-
|
|
12
|
-
# README #
|
|
13
|
-
|
|
14
|
-
This README would normally document whatever steps are necessary to get your application up and running.
|
|
15
|
-
|
|
16
|
-
### What is this repository for? ###
|
|
17
|
-
|
|
18
|
-
* Quick summary
|
|
19
|
-
* Version
|
|
20
|
-
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
|
|
21
|
-
|
|
22
|
-
### How do I get set up? ###
|
|
23
|
-
|
|
24
|
-
* Summary of set up
|
|
25
|
-
* Configuration
|
|
26
|
-
* Dependencies
|
|
27
|
-
* Database configuration
|
|
28
|
-
* How to run tests
|
|
29
|
-
* Deployment instructions
|
|
30
|
-
|
|
31
|
-
### Contribution guidelines ###
|
|
32
|
-
|
|
33
|
-
* Writing tests
|
|
34
|
-
* Code review
|
|
35
|
-
* Other guidelines
|
|
36
|
-
|
|
37
|
-
### Who do I talk to? ###
|
|
38
|
-
|
|
39
|
-
* Repo owner or admin
|
|
40
|
-
* Other community or team contact
|
|
@@ -1,105 +0,0 @@
|
|
|
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=89nLXfbTcteA6PloU6DNR0FHfXWVj8wfBQWnev795tI,6796
|
|
5
|
-
maleo/identity/client/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
maleo/identity/client/services/organization.py,sha256=3G5W1C_JSCh-m9OOvIZee_P1oqnzk0qoPVIXTZHYwkY,82839
|
|
7
|
-
maleo/identity/client/services/organization_registration_code.py,sha256=OVwT70MebLvQAVT70azol0jnFUThSDplIGmjH4HSYKY,19476
|
|
8
|
-
maleo/identity/client/services/organization_role.py,sha256=IIhHCm991gjLSQwdon4_qhlubfEFs_-Ipi_JIpAL2TU,11271
|
|
9
|
-
maleo/identity/client/services/user.py,sha256=n_tqiQgWDb_B1bvGwTRVxW4Wic47VG9_xk1QmIFp61k,66011
|
|
10
|
-
maleo/identity/client/services/user_organization.py,sha256=IU-NbVerFexHiCivuJKUZ7j9DuSoFKKSRHe9Q6iiBms,11271
|
|
11
|
-
maleo/identity/client/services/user_organization_role.py,sha256=dGEiDdXPfnz1Vjm2fgOFvhXX_NN5CmcZudHy7mqE00g,11355
|
|
12
|
-
maleo/identity/client/services/user_profile.py,sha256=L6pxaWkpyn2WItHcZNJqQfYkTF83_0wR3xZ_ZCO9BDU,11191
|
|
13
|
-
maleo/identity/client/services/user_system_role.py,sha256=rNwWSdMdcY9Rg25PUCQFR287ET7qg9hhPJTfTbBdxMM,11246
|
|
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=T8LUZ-7fAK4BvJwAOL2ywppvzI0tjvvamwiGLsPYzAI,790
|
|
17
|
-
maleo/identity/constants/organization_role.py,sha256=lDuPYcjEyug7NGWak5oKHsnCFIchqtKpmOujHuOp5Vs,1159
|
|
18
|
-
maleo/identity/constants/user.py,sha256=cQ7ThRMaldczONTx-TUdeZqaQJegJ2zD4F_8Y3Eme7A,859
|
|
19
|
-
maleo/identity/constants/user_organization.py,sha256=Ujh2ZQbrH2WryIdmLpKiuQAt7418vxbG4_DtHSlfTtY,2247
|
|
20
|
-
maleo/identity/constants/user_organization_role.py,sha256=FhWRyJ6whVRPD7-SqfpCqJtMfh-oFsjTX2AUoxAeJpI,1719
|
|
21
|
-
maleo/identity/constants/user_profile.py,sha256=DVl6dwUAWTMegQiwyvbC5l9Gb22s2otii9nNb1Elfqg,861
|
|
22
|
-
maleo/identity/constants/user_system_role.py,sha256=ifHNZvvRbLoTc-bzL5_nCvobR0jwHsnSm6-UYq0QDzw,474
|
|
23
|
-
maleo/identity/dtos/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
-
maleo/identity/dtos/configuration.py,sha256=gCsLhgmXjhsPCv0n80QHW7f4AlV1I-kbvZCuOW2c_Ss,473
|
|
25
|
-
maleo/identity/dtos/settings.py,sha256=LZ_nEzGQabYA8-7QV3YLPXrRIiKasa-62cQBgBwvhVw,583
|
|
26
|
-
maleo/identity/dtos/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
maleo/identity/dtos/data/organization_registration_code.py,sha256=nAxB8010MwKOjc3KvTtinFan7L2oiNx_BvEE1PXl_Rk,275
|
|
28
|
-
maleo/identity/dtos/data/user_profile.py,sha256=Gf7FZVmHPmX48aT9kCWh1Mgt4WQgS2X7a5m45Pn-hEw,450
|
|
29
|
-
maleo/identity/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
maleo/identity/enums/general.py,sha256=jR831PHPLErbT224_bKDvIHYFND0hF6yvN9cma58Vp8,82
|
|
31
|
-
maleo/identity/enums/organization.py,sha256=dFA1Ska3SxCTd8qegz9bzMdlPbzsOJm0xadDffcviTk,228
|
|
32
|
-
maleo/identity/enums/organization_registration_code.py,sha256=g4AOcf2aN36LCjA1GZEfwSSReKXsYRAZ-nrvTuVxXOk,148
|
|
33
|
-
maleo/identity/enums/organization_role.py,sha256=NQuFLyv-pHnMBNNDGPN_7EFz3vxvTNuvi_xR4s3Yt14,207
|
|
34
|
-
maleo/identity/enums/user.py,sha256=UBLek1aJUPnZNyPMSaHKDPbtvvbbOursBGycr6g8ad8,385
|
|
35
|
-
maleo/identity/enums/user_organization.py,sha256=q9weTEryo2OEy0XUVXwcjNX1TsdiT-ajXbIDcuqaRI8,440
|
|
36
|
-
maleo/identity/enums/user_organization_role.py,sha256=eRKwJ1_FighU2iOdnvN_2ZUvRHHIA2DWn-0ip3Ls10I,494
|
|
37
|
-
maleo/identity/enums/user_profile.py,sha256=n2Ns6GtK2DbJbHgJ7Ti8tLFy_0UqhrF9G4KxdlTy5x4,329
|
|
38
|
-
maleo/identity/enums/user_system_role.py,sha256=bmaHE6f1RoxavUhl1bR8_dL9KF_4DftohvOLHMvwg-g,91
|
|
39
|
-
maleo/identity/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
maleo/identity/mixins/organization.py,sha256=TWL7hIp7uvE5UD_3FpEXJvpJVhXki_yIHEoS552MsxQ,418
|
|
41
|
-
maleo/identity/mixins/organization_registration_code.py,sha256=Ey5R6vwRa0fTENqxkL1aC5Z7YM98lwXb2gzFNpDb1jg,507
|
|
42
|
-
maleo/identity/mixins/organization_role.py,sha256=NucG_TmWeKtpUoylZ2CzLjUPTHOFIAWJhKR22a0Z8hA,431
|
|
43
|
-
maleo/identity/mixins/user.py,sha256=WzSztOq6W7sFci_cEd3nCN_UalJfozzhbB4r1TuYcsw,1346
|
|
44
|
-
maleo/identity/mixins/user_organization.py,sha256=KiWWzCpoajYmN79DmO21a1J_NLhQfgAtIyLsf08JF2c,182
|
|
45
|
-
maleo/identity/mixins/user_organization_role.py,sha256=WmEHsLZOnyebcflXiIZmPkqK-dTjSXWN3vxWpZtBFZg,187
|
|
46
|
-
maleo/identity/mixins/user_profile.py,sha256=I6gcTwF3AICd3gWdPH-60miuxxlKo-cY-nM4A2uUlno,2235
|
|
47
|
-
maleo/identity/mixins/user_system_role.py,sha256=KyOefWg1FYshiBE5nmrytFGOJnKXwiCVEoNhzWOaM6k,181
|
|
48
|
-
maleo/identity/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
|
-
maleo/identity/models/organization.py,sha256=g4SjhPkP-IQAs29pfACt4lpi8TkMVhilfmEJFSPcuXA,2020
|
|
50
|
-
maleo/identity/models/organization_registration_code.py,sha256=zTWVIwwQuXH4S9hsTZ_wuMV7nEd_v-2BIyv85lSPRJw,1111
|
|
51
|
-
maleo/identity/models/organization_role.py,sha256=47hgWuJFeRKaVoLrI6mJtd2TrEVAnl2-kjgvdtv3r3c,1226
|
|
52
|
-
maleo/identity/models/user.py,sha256=O-98sIrmfqAGVWrKD5KhijRIuQ7MD7CBAeY9ckTzux0,1287
|
|
53
|
-
maleo/identity/models/user_organization.py,sha256=5l28DHEq7hlBYsBXBP1OHcqnn7WqQhcjDfJC-aWDgFc,1281
|
|
54
|
-
maleo/identity/models/user_organization_role.py,sha256=wwAJJY_7KwMx-sEWmfbnd9lNyxDDCcWmGpyVg9WtmC4,1866
|
|
55
|
-
maleo/identity/models/user_profile.py,sha256=_coKr4N069ON0VRrA4VdA9W8qzQWS6-BOpJWwN_vKSE,1557
|
|
56
|
-
maleo/identity/models/user_system_role.py,sha256=TtyQRO_OE9kbRDNprPQc-2Vc0tP3cY7nlR014ptRC7s,855
|
|
57
|
-
maleo/identity/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
-
maleo/identity/schemas/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
-
maleo/identity/schemas/data/organization.py,sha256=3cCZ6AX4r7VeW9ybaiFfq6mfpY84dnFreetP77Wv_vE,1053
|
|
60
|
-
maleo/identity/schemas/data/organization_registration_code.py,sha256=JF5eSH0o1-2B9rqap1-2Q1gw3zs1TMs2qTIEX9h87dU,826
|
|
61
|
-
maleo/identity/schemas/data/organization_role.py,sha256=LKqLNdZ5dMxF_Wb4x7MozsAZKFQIt2aLatZdcuhex3Q,879
|
|
62
|
-
maleo/identity/schemas/data/user.py,sha256=jZypPr7IN2ccOd2sqWm0mDBKd5e4djwMTjpVwoG4ED4,908
|
|
63
|
-
maleo/identity/schemas/data/user_organization.py,sha256=BBgBhGk2ADMuzubyNuEHh-gfo5orU_YnYxEy9F6Qg6s,593
|
|
64
|
-
maleo/identity/schemas/data/user_organization_role.py,sha256=F_9f3JmoeQeXsTWlMUUwXkI5jGZbAKHQ6A4Y4py2YpU,414
|
|
65
|
-
maleo/identity/schemas/data/user_profile.py,sha256=tDSe_6HWFJ9wIBGi0qhgW1k2uL5mXnhhATFPF5V3Pd0,1345
|
|
66
|
-
maleo/identity/schemas/data/user_system_role.py,sha256=ShlShEpAi3YZF_WYu2EbYvlR1r1KtvgSwKwdXLte4bs,640
|
|
67
|
-
maleo/identity/schemas/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
-
maleo/identity/schemas/metadata/user.py,sha256=or2OucbCiTquOtgWliVD0q_HWifBiDNJghxaymFxbzs,208
|
|
69
|
-
maleo/identity/schemas/parameter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
70
|
-
maleo/identity/schemas/parameter/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
maleo/identity/schemas/parameter/client/organization.py,sha256=Gmi3kfSqygqRm35E1IqQPKKq15uwW1-z71ORpT_z6x0,1674
|
|
72
|
-
maleo/identity/schemas/parameter/client/organization_registration_code.py,sha256=oafDNzk0DA2l6VlVgOJl8xKc_pzE3D50O_vaN9OeJsI,620
|
|
73
|
-
maleo/identity/schemas/parameter/client/organization_role.py,sha256=ZGwbUtfguQt_zOvn7tz_Z4tvMOkIp-nESp1ZlXJWK14,969
|
|
74
|
-
maleo/identity/schemas/parameter/client/user.py,sha256=_Kn5JtAR7oKuy1H-LqmvJVuB3To5dzel-pZSbRshioo,1308
|
|
75
|
-
maleo/identity/schemas/parameter/client/user_organization.py,sha256=osWE0RQ5Uo_1sCtIAH8a0sAMyMvaD8eGd-hAdTUUYho,1307
|
|
76
|
-
maleo/identity/schemas/parameter/client/user_organization_role.py,sha256=kg4JhC5yCAFGP4mufCPTWeCUyG2K5fDF5s-JZ69vNBc,1096
|
|
77
|
-
maleo/identity/schemas/parameter/client/user_profile.py,sha256=ZI6FBHnHNY2kGLg10TDfyMfi7YdkcegpXIzHtbcUL-M,840
|
|
78
|
-
maleo/identity/schemas/parameter/client/user_system_role.py,sha256=vwXBLB7cUVs9FpPy2hFurfNTrKTPZzvaIYYgy574Yik,1053
|
|
79
|
-
maleo/identity/schemas/parameter/general/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
-
maleo/identity/schemas/parameter/general/organization.py,sha256=sKsDbwo_hOQO_LSaQqkkalwswGsiOsOEOCDEOi9Hv9s,1118
|
|
81
|
-
maleo/identity/schemas/parameter/general/organization_registration_code.py,sha256=GeZRzmmhSjxUuKrJvEew84Ri4UyWZcNTuLzDI7DjwZ4,1241
|
|
82
|
-
maleo/identity/schemas/parameter/general/organization_role.py,sha256=jxNZsLyI2F0v_dntw6XGKchL06RCCQP2LCdzQvvihG0,468
|
|
83
|
-
maleo/identity/schemas/parameter/general/user.py,sha256=9r1xLT67q-TGrn_MsNld-VgQkOlDmcEJDT81-3Hb2ZQ,2155
|
|
84
|
-
maleo/identity/schemas/parameter/general/user_organization.py,sha256=11xtngCkoBa-D3qHhsdfrZM6iWVAH6oPi-gbJDx3xvA,540
|
|
85
|
-
maleo/identity/schemas/parameter/general/user_organization_role.py,sha256=nrgsblXxt-wQBgy4TUVAwD70b1zUsIboEPQQFKxGxDU,540
|
|
86
|
-
maleo/identity/schemas/parameter/general/user_profile.py,sha256=okz-0lO3bF8X_lvSIit2Zp5WfZGbACRpzn0SysBYWVA,1556
|
|
87
|
-
maleo/identity/schemas/parameter/general/user_system_role.py,sha256=bxIXMJhT05yBGWzItU00BYvZDXC0_oS2J4igmT4ePbA,654
|
|
88
|
-
maleo/identity/schemas/parameter/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
-
maleo/identity/schemas/parameter/service/organization.py,sha256=VDBYtppFnqGaCB-To04OTESsI576IcOEP_n-S_pPHi4,1388
|
|
90
|
-
maleo/identity/schemas/parameter/service/organization_registration_code.py,sha256=XFy7k1K3NpYFjnEtT-XZQfFBJHduWU5OucJexquxPos,567
|
|
91
|
-
maleo/identity/schemas/parameter/service/organization_role.py,sha256=714Y2jlgNjE_GJZwaDcbzYSObpZptPazJAQLWBy8vIQ,773
|
|
92
|
-
maleo/identity/schemas/parameter/service/user.py,sha256=u_ZhVLkF_67GC2x_CpsM9Nl3KcszI4zu3AImyNXAfGo,1322
|
|
93
|
-
maleo/identity/schemas/parameter/service/user_organization_role.py,sha256=hlS-6qbdDBLKJVWgXIz3vRgWmm1EoFqkiPijEYoRcao,854
|
|
94
|
-
maleo/identity/schemas/parameter/service/user_profile.py,sha256=1hLZAkqncLzMJv282rO1vU_5GGH-i9rB6xGyHSnZFvg,841
|
|
95
|
-
maleo/identity/schemas/parameter/service/user_system_role.py,sha256=aZex0fono0R6lmuwSWAcy5eOp9WXDC0URc6XviguD58,813
|
|
96
|
-
maleo/identity/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
-
maleo/identity/types/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
|
-
maleo/identity/types/base/organization.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
|
|
99
|
-
maleo/identity/types/base/organization_registration_code.py,sha256=V8cct7fTIO-OT7RoYuui__oblyIUzFdQWOwHfhflpUc,87
|
|
100
|
-
maleo/identity/types/base/user.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
|
|
101
|
-
maleo/identity/types/base/user_profile.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
|
|
102
|
-
maleo_identity-0.0.85.dist-info/METADATA,sha256=K1OXR9NzoKqJ1RWq1B8pfXwmvpRZjSphupd_1iOJokw,862
|
|
103
|
-
maleo_identity-0.0.85.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
104
|
-
maleo_identity-0.0.85.dist-info/top_level.txt,sha256=3Tpd1siVsfYoeI9FEOJNYnffx_shzZ3wsPpTvz5bljc,6
|
|
105
|
-
maleo_identity-0.0.85.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|