maleo-identity 0.0.97__py3-none-any.whl → 0.0.100__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/constants/api_key.py +13 -0
- maleo/identity/constants/organization.py +0 -14
- maleo/identity/constants/organization_registration_code.py +0 -15
- maleo/identity/constants/organization_relation.py +13 -0
- maleo/identity/constants/patient.py +7 -0
- maleo/identity/constants/user.py +0 -15
- maleo/identity/constants/user_medical_role.py +13 -0
- maleo/identity/constants/user_organization_role.py +13 -0
- maleo/identity/constants/user_profile.py +0 -15
- maleo/identity/constants/user_system_role.py +13 -0
- maleo/identity/dtos.py +295 -0
- maleo/identity/enums/api_key.py +13 -0
- maleo/identity/enums/organization.py +5 -6
- maleo/identity/enums/organization_relation.py +12 -0
- maleo/identity/enums/patient.py +22 -0
- maleo/identity/enums/user.py +10 -6
- maleo/identity/enums/user_medical_role.py +12 -0
- maleo/identity/enums/user_organization_role.py +12 -0
- maleo/identity/enums/user_profile.py +9 -0
- maleo/identity/enums/user_system_role.py +12 -0
- maleo/identity/mixins/api_key.py +6 -0
- maleo/identity/mixins/common.py +29 -0
- maleo/identity/mixins/organization_relation.py +14 -0
- maleo/identity/mixins/patient.py +8 -0
- maleo/identity/mixins/user_profile.py +4 -21
- maleo/identity/models.py +89 -95
- maleo/identity/schemas/api_key.py +128 -0
- maleo/identity/schemas/common.py +152 -120
- maleo/identity/schemas/organization.py +39 -6
- maleo/identity/schemas/organization_registration_code.py +14 -5
- maleo/identity/schemas/organization_relation.py +178 -0
- maleo/identity/schemas/patient.py +234 -0
- maleo/identity/schemas/user.py +19 -4
- maleo/identity/schemas/user_medical_role.py +181 -0
- maleo/identity/schemas/user_organization_role.py +181 -0
- maleo/identity/schemas/user_profile.py +68 -10
- maleo/identity/schemas/user_system_role.py +174 -0
- maleo/identity/types/api_key.py +7 -0
- maleo/identity/types/organization.py +1 -2
- maleo/identity/types/organization_registration_code.py +1 -2
- maleo/identity/types/organization_relation.py +7 -0
- maleo/identity/types/patient.py +4 -0
- maleo/identity/types/user.py +1 -2
- maleo/identity/types/user_medical_role.py +7 -0
- maleo/identity/types/user_organization_role.py +7 -0
- maleo/identity/types/user_profile.py +1 -2
- maleo/identity/types/user_system_role.py +7 -0
- maleo/identity/utils/organization.py +33 -27
- maleo/identity/utils/user.py +33 -27
- maleo/identity/validators/__init__.py +0 -0
- maleo/identity/validators/patient.py +6 -0
- {maleo_identity-0.0.97.dist-info → maleo_identity-0.0.100.dist-info}/METADATA +8 -7
- maleo_identity-0.0.100.dist-info/RECORD +67 -0
- maleo_identity-0.0.97.dist-info/RECORD +0 -36
- {maleo_identity-0.0.97.dist-info → maleo_identity-0.0.100.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.97.dist-info → maleo_identity-0.0.100.dist-info}/licenses/LICENSE +0 -0
- {maleo_identity-0.0.97.dist-info → maleo_identity-0.0.100.dist-info}/top_level.txt +0 -0
|
@@ -1,56 +1,62 @@
|
|
|
1
1
|
from typing import Literal, Type, overload
|
|
2
|
+
from ..dtos import (
|
|
3
|
+
StandardOrganizationDTO,
|
|
4
|
+
FullOrganizationDTO,
|
|
5
|
+
AnyOrganizationDTOType,
|
|
6
|
+
)
|
|
2
7
|
from ..schemas.common import (
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
StandardOrganizationCompleteSchema,
|
|
6
|
-
FullOrganizationCompleteSchema,
|
|
8
|
+
StandardOrganizationSchema,
|
|
9
|
+
FullOrganizationSchema,
|
|
7
10
|
AnyOrganizationSchemaType,
|
|
8
11
|
)
|
|
9
|
-
from ..enums.organization import Granularity
|
|
12
|
+
from ..enums.organization import Granularity
|
|
10
13
|
|
|
11
14
|
|
|
12
15
|
@overload
|
|
13
|
-
def
|
|
16
|
+
def get_dto_model(
|
|
14
17
|
granularity: Literal[Granularity.STANDARD],
|
|
15
|
-
schema_type: Literal[SchemaType.CORE],
|
|
16
18
|
/,
|
|
17
|
-
) -> Type[
|
|
19
|
+
) -> Type[StandardOrganizationDTO]: ...
|
|
18
20
|
@overload
|
|
19
|
-
def
|
|
20
|
-
granularity: Literal[Granularity.
|
|
21
|
-
|
|
21
|
+
def get_dto_model(
|
|
22
|
+
granularity: Literal[Granularity.FULL],
|
|
23
|
+
/,
|
|
24
|
+
) -> Type[FullOrganizationDTO]: ...
|
|
25
|
+
@overload
|
|
26
|
+
def get_dto_model(
|
|
27
|
+
granularity: Granularity = Granularity.STANDARD,
|
|
22
28
|
/,
|
|
23
|
-
) ->
|
|
29
|
+
) -> AnyOrganizationDTOType: ...
|
|
30
|
+
def get_dto_model(
|
|
31
|
+
granularity: Granularity = Granularity.STANDARD,
|
|
32
|
+
/,
|
|
33
|
+
) -> AnyOrganizationDTOType:
|
|
34
|
+
if granularity is Granularity.STANDARD:
|
|
35
|
+
return StandardOrganizationDTO
|
|
36
|
+
elif granularity is Granularity.FULL:
|
|
37
|
+
return FullOrganizationDTO
|
|
38
|
+
|
|
39
|
+
|
|
24
40
|
@overload
|
|
25
41
|
def get_schema_model(
|
|
26
|
-
granularity: Literal[Granularity.
|
|
27
|
-
schema_type: Literal[SchemaType.CORE],
|
|
42
|
+
granularity: Literal[Granularity.STANDARD],
|
|
28
43
|
/,
|
|
29
|
-
) -> Type[
|
|
44
|
+
) -> Type[StandardOrganizationSchema]: ...
|
|
30
45
|
@overload
|
|
31
46
|
def get_schema_model(
|
|
32
47
|
granularity: Literal[Granularity.FULL],
|
|
33
|
-
schema_type: Literal[SchemaType.COMPLETE],
|
|
34
48
|
/,
|
|
35
|
-
) -> Type[
|
|
49
|
+
) -> Type[FullOrganizationSchema]: ...
|
|
36
50
|
@overload
|
|
37
51
|
def get_schema_model(
|
|
38
52
|
granularity: Granularity = Granularity.STANDARD,
|
|
39
|
-
schema_type: SchemaType = SchemaType.CORE,
|
|
40
53
|
/,
|
|
41
54
|
) -> AnyOrganizationSchemaType: ...
|
|
42
55
|
def get_schema_model(
|
|
43
56
|
granularity: Granularity = Granularity.STANDARD,
|
|
44
|
-
schema_type: SchemaType = SchemaType.CORE,
|
|
45
57
|
/,
|
|
46
58
|
) -> AnyOrganizationSchemaType:
|
|
47
59
|
if granularity is Granularity.STANDARD:
|
|
48
|
-
|
|
49
|
-
return StandardOrganizationCoreSchema
|
|
50
|
-
elif schema_type is SchemaType.COMPLETE:
|
|
51
|
-
return StandardOrganizationCompleteSchema
|
|
60
|
+
return StandardOrganizationSchema
|
|
52
61
|
elif granularity is Granularity.FULL:
|
|
53
|
-
|
|
54
|
-
return FullOrganizationCoreSchema
|
|
55
|
-
elif schema_type is SchemaType.COMPLETE:
|
|
56
|
-
return FullOrganizationCompleteSchema
|
|
62
|
+
return FullOrganizationSchema
|
maleo/identity/utils/user.py
CHANGED
|
@@ -1,56 +1,62 @@
|
|
|
1
1
|
from typing import Literal, Type, overload
|
|
2
|
+
from ..dtos import (
|
|
3
|
+
StandardUserDTO,
|
|
4
|
+
FullUserDTO,
|
|
5
|
+
AnyUserDTOType,
|
|
6
|
+
)
|
|
2
7
|
from ..schemas.common import (
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
StandardUserCompleteSchema,
|
|
6
|
-
FullUserCompleteSchema,
|
|
8
|
+
StandardUserSchema,
|
|
9
|
+
FullUserSchema,
|
|
7
10
|
AnyUserSchemaType,
|
|
8
11
|
)
|
|
9
|
-
from ..enums.user import Granularity
|
|
12
|
+
from ..enums.user import Granularity
|
|
10
13
|
|
|
11
14
|
|
|
12
15
|
@overload
|
|
13
|
-
def
|
|
16
|
+
def get_dto_model(
|
|
14
17
|
granularity: Literal[Granularity.STANDARD],
|
|
15
|
-
schema_type: Literal[SchemaType.CORE],
|
|
16
18
|
/,
|
|
17
|
-
) -> Type[
|
|
19
|
+
) -> Type[StandardUserDTO]: ...
|
|
18
20
|
@overload
|
|
19
|
-
def
|
|
20
|
-
granularity: Literal[Granularity.
|
|
21
|
-
|
|
21
|
+
def get_dto_model(
|
|
22
|
+
granularity: Literal[Granularity.FULL],
|
|
23
|
+
/,
|
|
24
|
+
) -> Type[FullUserDTO]: ...
|
|
25
|
+
@overload
|
|
26
|
+
def get_dto_model(
|
|
27
|
+
granularity: Granularity = Granularity.STANDARD,
|
|
22
28
|
/,
|
|
23
|
-
) ->
|
|
29
|
+
) -> AnyUserDTOType: ...
|
|
30
|
+
def get_dto_model(
|
|
31
|
+
granularity: Granularity = Granularity.STANDARD,
|
|
32
|
+
/,
|
|
33
|
+
) -> AnyUserDTOType:
|
|
34
|
+
if granularity is Granularity.STANDARD:
|
|
35
|
+
return StandardUserDTO
|
|
36
|
+
elif granularity is Granularity.FULL:
|
|
37
|
+
return FullUserDTO
|
|
38
|
+
|
|
39
|
+
|
|
24
40
|
@overload
|
|
25
41
|
def get_schema_model(
|
|
26
|
-
granularity: Literal[Granularity.
|
|
27
|
-
schema_type: Literal[SchemaType.CORE],
|
|
42
|
+
granularity: Literal[Granularity.STANDARD],
|
|
28
43
|
/,
|
|
29
|
-
) -> Type[
|
|
44
|
+
) -> Type[StandardUserSchema]: ...
|
|
30
45
|
@overload
|
|
31
46
|
def get_schema_model(
|
|
32
47
|
granularity: Literal[Granularity.FULL],
|
|
33
|
-
schema_type: Literal[SchemaType.COMPLETE],
|
|
34
48
|
/,
|
|
35
|
-
) -> Type[
|
|
49
|
+
) -> Type[FullUserSchema]: ...
|
|
36
50
|
@overload
|
|
37
51
|
def get_schema_model(
|
|
38
52
|
granularity: Granularity = Granularity.STANDARD,
|
|
39
|
-
schema_type: SchemaType = SchemaType.CORE,
|
|
40
53
|
/,
|
|
41
54
|
) -> AnyUserSchemaType: ...
|
|
42
55
|
def get_schema_model(
|
|
43
56
|
granularity: Granularity = Granularity.STANDARD,
|
|
44
|
-
schema_type: SchemaType = SchemaType.CORE,
|
|
45
57
|
/,
|
|
46
58
|
) -> AnyUserSchemaType:
|
|
47
59
|
if granularity is Granularity.STANDARD:
|
|
48
|
-
|
|
49
|
-
return StandardUserCoreSchema
|
|
50
|
-
elif schema_type is SchemaType.COMPLETE:
|
|
51
|
-
return StandardUserCompleteSchema
|
|
60
|
+
return StandardUserSchema
|
|
52
61
|
elif granularity is Granularity.FULL:
|
|
53
|
-
|
|
54
|
-
return FullUserCoreSchema
|
|
55
|
-
elif schema_type is SchemaType.COMPLETE:
|
|
56
|
-
return FullUserCompleteSchema
|
|
62
|
+
return FullUserSchema
|
|
File without changes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maleo-identity
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.100
|
|
4
4
|
Summary: MaleoIdentity service package
|
|
5
5
|
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
6
|
License: Proprietary
|
|
@@ -41,12 +41,13 @@ Requires-Dist: identify>=2.6.15
|
|
|
41
41
|
Requires-Dist: idna>=3.10
|
|
42
42
|
Requires-Dist: importlib_metadata>=8.7.0
|
|
43
43
|
Requires-Dist: iniconfig>=2.1.0
|
|
44
|
-
Requires-Dist: maleo-crypto>=0.0.
|
|
45
|
-
Requires-Dist: maleo-enums>=0.0.
|
|
46
|
-
Requires-Dist: maleo-logging>=0.0.
|
|
47
|
-
Requires-Dist: maleo-
|
|
48
|
-
Requires-Dist: maleo-
|
|
49
|
-
Requires-Dist: maleo-
|
|
44
|
+
Requires-Dist: maleo-crypto>=0.0.46
|
|
45
|
+
Requires-Dist: maleo-enums>=0.0.46
|
|
46
|
+
Requires-Dist: maleo-logging>=0.0.46
|
|
47
|
+
Requires-Dist: maleo-metadata>=0.3.60
|
|
48
|
+
Requires-Dist: maleo-schemas>=0.1.56
|
|
49
|
+
Requires-Dist: maleo-types>=0.0.26
|
|
50
|
+
Requires-Dist: maleo-utils>=0.0.46
|
|
50
51
|
Requires-Dist: mypy_extensions>=1.1.0
|
|
51
52
|
Requires-Dist: nodeenv>=1.9.1
|
|
52
53
|
Requires-Dist: opentelemetry-api>=1.37.0
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
maleo/identity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
maleo/identity/dtos.py,sha256=Zc7ApGe5UgrlKUajHHNHS8i9B4_YSNL0sxG5bYA8obM,7459
|
|
3
|
+
maleo/identity/models.py,sha256=rVmEeFmFZQXnJP1swpkEdhmTEOea1G8IVWoJwvVWnIA,10231
|
|
4
|
+
maleo/identity/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
maleo/identity/constants/api_key.py,sha256=e7CsTodUBgyoX30SJUnYx457WBZeRFyyeaOFGsZ-7mY,264
|
|
6
|
+
maleo/identity/constants/organization.py,sha256=Jeewz4VlaTmuHHDqNZUZyLD3bdndQjpx9K0EabhCFUM,259
|
|
7
|
+
maleo/identity/constants/organization_registration_code.py,sha256=L_j_NrLtsniN6kbDif7rQ7Yj9CdxUsgL3Yte9SE5Zes,356
|
|
8
|
+
maleo/identity/constants/organization_relation.py,sha256=XqfQlA96a8VrPPD7mjl8UZVYKK7B-1r5_dObC2Mc4fk,320
|
|
9
|
+
maleo/identity/constants/patient.py,sha256=-A0edrjgOOsHPjfcvvAIoojIrsywlczszpN6xux-DM0,203
|
|
10
|
+
maleo/identity/constants/user.py,sha256=vlF60H4-THtoOpwyAHMYqaLknXsQOANCLTngbyhNET4,191
|
|
11
|
+
maleo/identity/constants/user_medical_role.py,sha256=HVeXXb191qpAJJHtSgJ0NdFlLCxeEQBOKRr7JCQN8Pg,304
|
|
12
|
+
maleo/identity/constants/user_organization_role.py,sha256=-6z8e5-OJWmm_47_zbbp61JxiRGGytELqk0iZ5yX4Wk,324
|
|
13
|
+
maleo/identity/constants/user_profile.py,sha256=trDI4mNlcbA1_ignknMy07I6H-VqAytlfB8ejoQ7XH0,259
|
|
14
|
+
maleo/identity/constants/user_system_role.py,sha256=_p5FI2X7yBUJuA06ia_vIkDRyfY4WZweQD08G3wCuRw,300
|
|
15
|
+
maleo/identity/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
maleo/identity/enums/api_key.py,sha256=WST6RsRrvJGeSL5ugVeZNKXReGsh9GEPDxmRy-owiEk,276
|
|
17
|
+
maleo/identity/enums/organization.py,sha256=6dALM4rhK9EEsSIQzanW6S0KfhzfHSZ2-VAS7AHAK28,591
|
|
18
|
+
maleo/identity/enums/organization_registration_code.py,sha256=ZkteIpOW6MOLEHBbmDUaRGalTlTWUIRlimz-FohBWiM,282
|
|
19
|
+
maleo/identity/enums/organization_relation.py,sha256=jH9AIYKhxPtK-I02KVrYfZ9Wdo-KNCFk0rDBauwt-Ps,252
|
|
20
|
+
maleo/identity/enums/patient.py,sha256=JYnVPKZV_hhdygkVut5B1YS3BMknHPzDmthiT7EfwkY,467
|
|
21
|
+
maleo/identity/enums/user.py,sha256=Cpp3Oj_NwqF6-fHGruF16TNFProu10ybX1k0HATPcPw,767
|
|
22
|
+
maleo/identity/enums/user_medical_role.py,sha256=jH9AIYKhxPtK-I02KVrYfZ9Wdo-KNCFk0rDBauwt-Ps,252
|
|
23
|
+
maleo/identity/enums/user_organization_role.py,sha256=jH9AIYKhxPtK-I02KVrYfZ9Wdo-KNCFk0rDBauwt-Ps,252
|
|
24
|
+
maleo/identity/enums/user_profile.py,sha256=Kujd6xyDluP5M2DogR5Esw8TViFartjMY1jl39sFpNk,465
|
|
25
|
+
maleo/identity/enums/user_system_role.py,sha256=jH9AIYKhxPtK-I02KVrYfZ9Wdo-KNCFk0rDBauwt-Ps,252
|
|
26
|
+
maleo/identity/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
maleo/identity/mixins/api_key.py,sha256=btlTZkJxhLyxj0T50ZBJnSUwiDIJl4Dz7oNl7Ftc9WM,173
|
|
28
|
+
maleo/identity/mixins/common.py,sha256=diWtUiPMI_ypHtDrmI5y8IArxCdomo9Gt6X69iFhyuw,905
|
|
29
|
+
maleo/identity/mixins/organization.py,sha256=KMl7Zz_SXu6SvF_1fTibN2vORFGWH7P22cxS_T4KXmE,574
|
|
30
|
+
maleo/identity/mixins/organization_registration_code.py,sha256=G-kgdf2IzKENEyZcV6IXT69eAemnqR1vph3hhG3l1y4,508
|
|
31
|
+
maleo/identity/mixins/organization_relation.py,sha256=fALtOSx9gIEuzDdykKAWiPkCjStJxo4q8UzUTAdoq2s,453
|
|
32
|
+
maleo/identity/mixins/patient.py,sha256=ziNj9Sn_fvQWGmod1GSFpmtwjYLUCICAmL_u0zbokk8,304
|
|
33
|
+
maleo/identity/mixins/user.py,sha256=UHoMgFJXptE9x9QsR07KG2bgp5OlCNqvYjEtP9S3TIY,1054
|
|
34
|
+
maleo/identity/mixins/user_profile.py,sha256=LFHAzGD-3wli6YJGfl9-Sy0gtQHkhgvrZ5EzOfl1vXY,1174
|
|
35
|
+
maleo/identity/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
maleo/identity/schemas/api_key.py,sha256=UnQfnoEMkFgOfWDKai6wWNyD5QsovyoOov6jN52QPKI,3713
|
|
37
|
+
maleo/identity/schemas/common.py,sha256=dnLQO321jEDqkzM8CC5sKrr6urlq2J0ZX94vPkP7xM0,8740
|
|
38
|
+
maleo/identity/schemas/organization.py,sha256=hcKYw-fObxvme2PUkU9jWk0dgj6XIQdU4gIs-Z3JY08,5391
|
|
39
|
+
maleo/identity/schemas/organization_registration_code.py,sha256=jAP7MGb_28wh1WoBZDl2FSJBxKFRH56YSQvMFQ5_iyo,4731
|
|
40
|
+
maleo/identity/schemas/organization_relation.py,sha256=ZQauGidff-cAFY1gS9i3XRwauyWLg1f8xFES7mL6B8M,5083
|
|
41
|
+
maleo/identity/schemas/patient.py,sha256=pV4qukuUXqlLNR2_2AlzvpmxZueNbLzIczdpiWE7_wc,6221
|
|
42
|
+
maleo/identity/schemas/user.py,sha256=M2aYjNrhiw1tTjjNdyFaAFYfdACOROegqyBo3hsDVY4,5285
|
|
43
|
+
maleo/identity/schemas/user_medical_role.py,sha256=YzYsjMRKIA4CWdfOlGoPqWFl4v2JTj2EBwOWhNtUKSQ,4893
|
|
44
|
+
maleo/identity/schemas/user_organization_role.py,sha256=MW1Ry1HnGrASmP2Mulk3Pfk1_mIOlLTBARerOA0TowI,4983
|
|
45
|
+
maleo/identity/schemas/user_profile.py,sha256=zC1yCFg1cUsIYMjQghi6n7y-lxi4Y7PqN-dSbZILB8s,6594
|
|
46
|
+
maleo/identity/schemas/user_system_role.py,sha256=CRI8KgNpcjJU9EBtEc75-vUmC64J5ZgigFO6IRWuRKM,4665
|
|
47
|
+
maleo/identity/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
maleo/identity/types/api_key.py,sha256=pjWzyAh1p0DTS6v2ImYv849iF-T0PbEM8qlrwN3c-2o,190
|
|
49
|
+
maleo/identity/types/organization.py,sha256=UqOBL4v138jumjQstCAZ-2ZV1Ax8-Cr4SvL36nx8brw,63
|
|
50
|
+
maleo/identity/types/organization_registration_code.py,sha256=UqOBL4v138jumjQstCAZ-2ZV1Ax8-Cr4SvL36nx8brw,63
|
|
51
|
+
maleo/identity/types/organization_relation.py,sha256=EVqAXNkswHRo07Fh8eRX5CyPEF5PqX00vAIaavtNZv4,222
|
|
52
|
+
maleo/identity/types/patient.py,sha256=UqOBL4v138jumjQstCAZ-2ZV1Ax8-Cr4SvL36nx8brw,63
|
|
53
|
+
maleo/identity/types/user.py,sha256=UqOBL4v138jumjQstCAZ-2ZV1Ax8-Cr4SvL36nx8brw,63
|
|
54
|
+
maleo/identity/types/user_medical_role.py,sha256=rH8z-qz_T5eTykXUBe8jLUvdyEOC4wMTC4zWpX3Ca4g,199
|
|
55
|
+
maleo/identity/types/user_organization_role.py,sha256=FFgzo2IvblckLwKN-rnOXI9TRpV_lYv1NprmUIl_JBE,214
|
|
56
|
+
maleo/identity/types/user_profile.py,sha256=UqOBL4v138jumjQstCAZ-2ZV1Ax8-Cr4SvL36nx8brw,63
|
|
57
|
+
maleo/identity/types/user_system_role.py,sha256=6KIDk7kCWBlrloNLfIElflS5N8oBYqPeNRqySD2BQEE,191
|
|
58
|
+
maleo/identity/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
+
maleo/identity/utils/organization.py,sha256=jU-PLlxPbsRciid82p-ScdLSydspI-5ofJX7KL5qmDo,1611
|
|
60
|
+
maleo/identity/utils/user.py,sha256=Mk1NTrViz1nBJxtPZRWdQmYHjTPxxc61a02eyikEBoU,1459
|
|
61
|
+
maleo/identity/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
maleo/identity/validators/patient.py,sha256=b4krKsXMuwUCXYuzCeUXtOXNTaEkKtQaAYmAmuVYIgo,221
|
|
63
|
+
maleo_identity-0.0.100.dist-info/licenses/LICENSE,sha256=aftGsecnk7TWVX-7KW94FqK4Syy6YSZ8PZEF7EcIp3M,2621
|
|
64
|
+
maleo_identity-0.0.100.dist-info/METADATA,sha256=yfE8SHxFQFk7LoN3m7fn0IF6IgLeRBpixgxFfFtKqWw,3585
|
|
65
|
+
maleo_identity-0.0.100.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
66
|
+
maleo_identity-0.0.100.dist-info/top_level.txt,sha256=3Tpd1siVsfYoeI9FEOJNYnffx_shzZ3wsPpTvz5bljc,6
|
|
67
|
+
maleo_identity-0.0.100.dist-info/RECORD,,
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
maleo/identity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
maleo/identity/models.py,sha256=XqxpJxCOgnOdVriB-lrP4G1HV-WpzUWzVj3xzIkN6q0,10657
|
|
3
|
-
maleo/identity/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
maleo/identity/constants/organization.py,sha256=9GXKRvYRFMIWX56VhpHw_AAuQmelwQwZT4_3hPusw7U,607
|
|
5
|
-
maleo/identity/constants/organization_registration_code.py,sha256=dseUWnG3-rQv-e4d4wWpMmAHEgDLznfV1VXGMQFXM7Y,783
|
|
6
|
-
maleo/identity/constants/user.py,sha256=1gUDHHaxY0i4N6Nw_JAPP6iRz1oU3-gJuCsalGP6hoM,559
|
|
7
|
-
maleo/identity/constants/user_profile.py,sha256=5O8VuqJfC8ZYtXpYaLm1eFYLjpUrOOgdpTvQ8E5l5zQ,644
|
|
8
|
-
maleo/identity/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
maleo/identity/enums/organization.py,sha256=8Rq5N-Bkvkmf6EamRo_ETndxosz3irWAGVs3SjqdyLU,571
|
|
10
|
-
maleo/identity/enums/organization_registration_code.py,sha256=ZkteIpOW6MOLEHBbmDUaRGalTlTWUIRlimz-FohBWiM,282
|
|
11
|
-
maleo/identity/enums/user.py,sha256=3ulqp0dKddK9EqJS0J6V0d5n5Dj6IDPjtEnJyeWtZxY,601
|
|
12
|
-
maleo/identity/enums/user_profile.py,sha256=LgX7Ct-MAfx7o0W8MICzpHMfDhi7wpiJfRszn6vr1zc,272
|
|
13
|
-
maleo/identity/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
maleo/identity/mixins/organization.py,sha256=KMl7Zz_SXu6SvF_1fTibN2vORFGWH7P22cxS_T4KXmE,574
|
|
15
|
-
maleo/identity/mixins/organization_registration_code.py,sha256=G-kgdf2IzKENEyZcV6IXT69eAemnqR1vph3hhG3l1y4,508
|
|
16
|
-
maleo/identity/mixins/user.py,sha256=UHoMgFJXptE9x9QsR07KG2bgp5OlCNqvYjEtP9S3TIY,1054
|
|
17
|
-
maleo/identity/mixins/user_profile.py,sha256=WhAEoeaqe1zmLr_s5n8Du4DXDlKFae-biXjOWHTg5I4,1667
|
|
18
|
-
maleo/identity/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
maleo/identity/schemas/common.py,sha256=ehsu6GAOWpGiGD66zWPUyp8mriB7KKJ2ydOahNygp-k,7874
|
|
20
|
-
maleo/identity/schemas/organization.py,sha256=jsic_Vh4i3OjUYFWGEhy9GkEYxJ7jlfrWCKiW7qfUFs,4544
|
|
21
|
-
maleo/identity/schemas/organization_registration_code.py,sha256=iN11JSSk22Ad7OjILdRaEIV_e63K1seil-Ol9VjldTk,4444
|
|
22
|
-
maleo/identity/schemas/user.py,sha256=9ay-q8wVt67esgMd07Y2HAQhg14yOHuoaDiOmhJ_rGM,4935
|
|
23
|
-
maleo/identity/schemas/user_profile.py,sha256=FqZPvH-8RzpKz5mWxvD_R5lVDFJFhqYIA2ltz-MyNug,5377
|
|
24
|
-
maleo/identity/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
maleo/identity/types/organization.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
|
|
26
|
-
maleo/identity/types/organization_registration_code.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
|
|
27
|
-
maleo/identity/types/user.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
|
|
28
|
-
maleo/identity/types/user_profile.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
|
|
29
|
-
maleo/identity/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
maleo/identity/utils/organization.py,sha256=pcx3ay5S0CjvgCHST0dJM3OykNXTQO8wr4Ium0H8_Ek,1824
|
|
31
|
-
maleo/identity/utils/user.py,sha256=5GjWmOnELzk2pF7gJNfGlQh9rnNI5oy9z1d9tVQp3oI,1696
|
|
32
|
-
maleo_identity-0.0.97.dist-info/licenses/LICENSE,sha256=aftGsecnk7TWVX-7KW94FqK4Syy6YSZ8PZEF7EcIp3M,2621
|
|
33
|
-
maleo_identity-0.0.97.dist-info/METADATA,sha256=Rfh49XxqKr2DVMcNA0UjnWSIZcALN_ejMudxPrxmfrY,3546
|
|
34
|
-
maleo_identity-0.0.97.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
35
|
-
maleo_identity-0.0.97.dist-info/top_level.txt,sha256=3Tpd1siVsfYoeI9FEOJNYnffx_shzZ3wsPpTvz5bljc,6
|
|
36
|
-
maleo_identity-0.0.97.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|