maleo-identity 0.0.89__tar.gz → 0.1.20__tar.gz
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-0.1.20/LICENSE +57 -0
- maleo_identity-0.1.20/PKG-INFO +119 -0
- maleo_identity-0.1.20/maleo_identity.egg-info/PKG-INFO +119 -0
- maleo_identity-0.1.20/maleo_identity.egg-info/SOURCES.txt +69 -0
- maleo_identity-0.1.20/maleo_identity.egg-info/requires.txt +79 -0
- maleo_identity-0.1.20/pyproject.toml +124 -0
- maleo_identity-0.1.20/src/constants/api_key.py +13 -0
- maleo_identity-0.1.20/src/constants/organization.py +11 -0
- maleo_identity-0.1.20/src/constants/organization_registration_code.py +13 -0
- maleo_identity-0.1.20/src/constants/organization_relation.py +13 -0
- maleo_identity-0.1.20/src/constants/patient.py +7 -0
- maleo_identity-0.1.20/src/constants/user.py +7 -0
- maleo_identity-0.1.20/src/constants/user_medical_role.py +13 -0
- maleo_identity-0.1.20/src/constants/user_organization_role.py +13 -0
- maleo_identity-0.1.20/src/constants/user_profile.py +11 -0
- maleo_identity-0.1.20/src/constants/user_system_role.py +17 -0
- maleo_identity-0.1.20/src/enums/api_key.py +25 -0
- maleo_identity-0.1.20/src/enums/organization.py +25 -0
- maleo_identity-0.1.20/src/enums/organization_registration_code.py +17 -0
- maleo_identity-0.1.20/src/enums/organization_relation.py +22 -0
- maleo_identity-0.1.20/src/enums/patient.py +29 -0
- maleo_identity-0.1.20/src/enums/user.py +26 -0
- maleo_identity-0.1.20/src/enums/user_medical_role.py +22 -0
- maleo_identity-0.1.20/src/enums/user_organization_role.py +22 -0
- maleo_identity-0.1.20/src/enums/user_profile.py +17 -0
- maleo_identity-0.1.20/src/enums/user_system_role.py +22 -0
- maleo_identity-0.1.20/src/mixins/api_key.py +72 -0
- maleo_identity-0.1.20/src/mixins/common.py +29 -0
- maleo_identity-0.1.20/src/mixins/organization.py +75 -0
- maleo_identity-0.1.20/src/mixins/organization_registration_code.py +102 -0
- maleo_identity-0.1.20/src/mixins/organization_relation.py +80 -0
- maleo_identity-0.1.20/src/mixins/patient.py +65 -0
- maleo_identity-0.1.20/src/mixins/user.py +109 -0
- maleo_identity-0.1.20/src/mixins/user_medical_role.py +68 -0
- maleo_identity-0.1.20/src/mixins/user_organization_role.py +70 -0
- maleo_identity-0.1.20/src/mixins/user_profile.py +119 -0
- maleo_identity-0.1.20/src/mixins/user_system_role.py +68 -0
- maleo_identity-0.1.20/src/schemas/api_key.py +171 -0
- maleo_identity-0.1.20/src/schemas/common.py +335 -0
- maleo_identity-0.1.20/src/schemas/organization.py +311 -0
- maleo_identity-0.1.20/src/schemas/organization_registration_code.py +313 -0
- maleo_identity-0.1.20/src/schemas/organization_relation.py +315 -0
- maleo_identity-0.1.20/src/schemas/patient.py +329 -0
- maleo_identity-0.1.20/src/schemas/user.py +318 -0
- maleo_identity-0.1.20/src/schemas/user_medical_role.py +316 -0
- maleo_identity-0.1.20/src/schemas/user_organization_role.py +317 -0
- maleo_identity-0.1.20/src/schemas/user_profile.py +362 -0
- maleo_identity-0.1.20/src/schemas/user_system_role.py +314 -0
- maleo_identity-0.1.20/src/types/api_key.py +7 -0
- maleo_identity-0.1.20/src/types/organization.py +4 -0
- maleo_identity-0.1.20/src/types/organization_registration_code.py +4 -0
- maleo_identity-0.1.20/src/types/organization_relation.py +7 -0
- maleo_identity-0.1.20/src/types/patient.py +4 -0
- maleo_identity-0.1.20/src/types/user.py +4 -0
- maleo_identity-0.1.20/src/types/user_medical_role.py +7 -0
- maleo_identity-0.1.20/src/types/user_organization_role.py +7 -0
- maleo_identity-0.1.20/src/types/user_profile.py +4 -0
- maleo_identity-0.1.20/src/types/user_system_role.py +7 -0
- maleo_identity-0.1.20/src/utils/organization.py +32 -0
- maleo_identity-0.1.20/src/utils/user.py +32 -0
- maleo_identity-0.0.89/PKG-INFO +0 -40
- maleo_identity-0.0.89/maleo/identity/client/manager.py +0 -157
- maleo_identity-0.0.89/maleo/identity/client/services/organization.py +0 -1944
- maleo_identity-0.0.89/maleo/identity/client/services/organization_registration_code.py +0 -470
- maleo_identity-0.0.89/maleo/identity/client/services/organization_role.py +0 -276
- maleo_identity-0.0.89/maleo/identity/client/services/user.py +0 -1559
- maleo_identity-0.0.89/maleo/identity/client/services/user_organization.py +0 -276
- maleo_identity-0.0.89/maleo/identity/client/services/user_organization_role.py +0 -278
- maleo_identity-0.0.89/maleo/identity/client/services/user_profile.py +0 -276
- maleo_identity-0.0.89/maleo/identity/client/services/user_system_role.py +0 -276
- maleo_identity-0.0.89/maleo/identity/constants/organization.py +0 -18
- maleo_identity-0.0.89/maleo/identity/constants/organization_registration_code.py +0 -25
- maleo_identity-0.0.89/maleo/identity/constants/organization_role.py +0 -35
- maleo_identity-0.0.89/maleo/identity/constants/user.py +0 -24
- maleo_identity-0.0.89/maleo/identity/constants/user_organization.py +0 -58
- maleo_identity-0.0.89/maleo/identity/constants/user_organization_role.py +0 -47
- maleo_identity-0.0.89/maleo/identity/constants/user_profile.py +0 -29
- maleo_identity-0.0.89/maleo/identity/constants/user_system_role.py +0 -16
- maleo_identity-0.0.89/maleo/identity/db.py +0 -4
- maleo_identity-0.0.89/maleo/identity/dtos/configuration.py +0 -15
- maleo_identity-0.0.89/maleo/identity/dtos/data/organization_registration_code.py +0 -15
- maleo_identity-0.0.89/maleo/identity/dtos/data/user_profile.py +0 -29
- maleo_identity-0.0.89/maleo/identity/dtos/settings.py +0 -17
- maleo_identity-0.0.89/maleo/identity/enums/general.py +0 -5
- maleo_identity-0.0.89/maleo/identity/enums/organization.py +0 -12
- maleo_identity-0.0.89/maleo/identity/enums/organization_registration_code.py +0 -8
- maleo_identity-0.0.89/maleo/identity/enums/organization_role.py +0 -7
- maleo_identity-0.0.89/maleo/identity/enums/user.py +0 -17
- maleo_identity-0.0.89/maleo/identity/enums/user_organization.py +0 -14
- maleo_identity-0.0.89/maleo/identity/enums/user_organization_role.py +0 -15
- maleo_identity-0.0.89/maleo/identity/enums/user_profile.py +0 -19
- maleo_identity-0.0.89/maleo/identity/enums/user_system_role.py +0 -5
- maleo_identity-0.0.89/maleo/identity/mixins/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/mixins/organization.py +0 -15
- maleo_identity-0.0.89/maleo/identity/mixins/organization_registration_code.py +0 -19
- maleo_identity-0.0.89/maleo/identity/mixins/organization_role.py +0 -15
- maleo_identity-0.0.89/maleo/identity/mixins/user.py +0 -47
- maleo_identity-0.0.89/maleo/identity/mixins/user_organization.py +0 -6
- maleo_identity-0.0.89/maleo/identity/mixins/user_organization_role.py +0 -6
- maleo_identity-0.0.89/maleo/identity/mixins/user_profile.py +0 -88
- maleo_identity-0.0.89/maleo/identity/mixins/user_system_role.py +0 -6
- maleo_identity-0.0.89/maleo/identity/models/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/models/organization.py +0 -62
- maleo_identity-0.0.89/maleo/identity/models/organization_registration_code.py +0 -33
- maleo_identity-0.0.89/maleo/identity/models/organization_role.py +0 -37
- maleo_identity-0.0.89/maleo/identity/models/user.py +0 -39
- maleo_identity-0.0.89/maleo/identity/models/user_organization.py +0 -48
- maleo_identity-0.0.89/maleo/identity/models/user_organization_role.py +0 -61
- maleo_identity-0.0.89/maleo/identity/models/user_profile.py +0 -33
- maleo_identity-0.0.89/maleo/identity/models/user_system_role.py +0 -26
- maleo_identity-0.0.89/maleo/identity/schemas/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/schemas/data/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/schemas/data/organization.py +0 -36
- maleo_identity-0.0.89/maleo/identity/schemas/data/organization_registration_code.py +0 -27
- maleo_identity-0.0.89/maleo/identity/schemas/data/organization_role.py +0 -32
- maleo_identity-0.0.89/maleo/identity/schemas/data/user.py +0 -33
- maleo_identity-0.0.89/maleo/identity/schemas/data/user_organization.py +0 -23
- maleo_identity-0.0.89/maleo/identity/schemas/data/user_organization_role.py +0 -13
- maleo_identity-0.0.89/maleo/identity/schemas/data/user_profile.py +0 -59
- maleo_identity-0.0.89/maleo/identity/schemas/data/user_system_role.py +0 -25
- maleo_identity-0.0.89/maleo/identity/schemas/metadata/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/schemas/metadata/user.py +0 -6
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/client/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/client/organization.py +0 -74
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/client/organization_registration_code.py +0 -24
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/client/organization_role.py +0 -42
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/client/user.py +0 -44
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/client/user_organization.py +0 -62
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/client/user_organization_role.py +0 -49
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/client/user_profile.py +0 -28
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/client/user_system_role.py +0 -43
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/general/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/general/organization.py +0 -92
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/general/organization_registration_code.py +0 -86
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/general/organization_role.py +0 -14
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/general/user.py +0 -150
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/general/user_organization.py +0 -18
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/general/user_organization_role.py +0 -15
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/general/user_profile.py +0 -119
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/general/user_system_role.py +0 -30
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/service/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/service/organization.py +0 -60
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/service/organization_registration_code.py +0 -24
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/service/organization_role.py +0 -35
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/service/user.py +0 -47
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/service/user_organization_role.py +0 -36
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/service/user_profile.py +0 -28
- maleo_identity-0.0.89/maleo/identity/schemas/parameter/service/user_system_role.py +0 -31
- maleo_identity-0.0.89/maleo/identity/types/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/types/base/__init__.py +0 -0
- maleo_identity-0.0.89/maleo/identity/types/base/organization.py +0 -5
- maleo_identity-0.0.89/maleo/identity/types/base/organization_registration_code.py +0 -4
- maleo_identity-0.0.89/maleo/identity/types/base/user.py +0 -5
- maleo_identity-0.0.89/maleo/identity/types/base/user_profile.py +0 -5
- maleo_identity-0.0.89/maleo_identity.egg-info/PKG-INFO +0 -40
- maleo_identity-0.0.89/maleo_identity.egg-info/SOURCES.txt +0 -108
- maleo_identity-0.0.89/maleo_identity.egg-info/requires.txt +0 -2
- maleo_identity-0.0.89/pyproject.toml +0 -25
- {maleo_identity-0.0.89 → maleo_identity-0.1.20}/README.md +0 -0
- {maleo_identity-0.0.89 → maleo_identity-0.1.20}/maleo_identity.egg-info/dependency_links.txt +0 -0
- {maleo_identity-0.0.89 → maleo_identity-0.1.20}/maleo_identity.egg-info/top_level.txt +0 -0
- {maleo_identity-0.0.89 → maleo_identity-0.1.20}/setup.cfg +0 -0
- {maleo_identity-0.0.89/maleo/identity → maleo_identity-0.1.20/src}/__init__.py +0 -0
- {maleo_identity-0.0.89/maleo/identity/client → maleo_identity-0.1.20/src/constants}/__init__.py +0 -0
- {maleo_identity-0.0.89/maleo/identity/client/services → maleo_identity-0.1.20/src/enums}/__init__.py +0 -0
- {maleo_identity-0.0.89/maleo/identity/constants → maleo_identity-0.1.20/src/mixins}/__init__.py +0 -0
- {maleo_identity-0.0.89/maleo/identity/dtos → maleo_identity-0.1.20/src/schemas}/__init__.py +0 -0
- {maleo_identity-0.0.89/maleo/identity/dtos/data → maleo_identity-0.1.20/src/types}/__init__.py +0 -0
- {maleo_identity-0.0.89/maleo/identity/enums → maleo_identity-0.1.20/src/utils}/__init__.py +0 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Proprietary Software License
|
|
2
|
+
|
|
3
|
+
**Copyright (c) 2025 Agra Bima Yuda / Nexmedis**
|
|
4
|
+
|
|
5
|
+
## License Grant
|
|
6
|
+
|
|
7
|
+
This software and associated documentation files (the "Software") are proprietary and confidential to Agra Bima Yuda and/or Nexmedis ("Licensor"). All rights reserved.
|
|
8
|
+
|
|
9
|
+
## Restrictions
|
|
10
|
+
|
|
11
|
+
**NO PERMISSION** is granted to any person to:
|
|
12
|
+
|
|
13
|
+
1. **Use** the Software for any purpose without explicit written permission from the Licensor
|
|
14
|
+
2. **Copy, modify, merge, publish, distribute, sublicense, or sell** copies of the Software
|
|
15
|
+
3. **Reverse engineer, decompile, or disassemble** the Software
|
|
16
|
+
4. **Create derivative works** based upon the Software
|
|
17
|
+
5. **Remove or alter** any proprietary notices, labels, or marks on the Software
|
|
18
|
+
|
|
19
|
+
## Permitted Use
|
|
20
|
+
|
|
21
|
+
Use of this Software is permitted only under the following conditions:
|
|
22
|
+
|
|
23
|
+
1. **Authorized Users**: Only individuals or entities explicitly authorized by the Licensor in writing
|
|
24
|
+
2. **Internal Use Only**: The Software may only be used for internal business purposes of the authorized entity
|
|
25
|
+
3. **No Redistribution**: The Software may not be shared, distributed, or made available to any third party
|
|
26
|
+
|
|
27
|
+
## Ownership
|
|
28
|
+
|
|
29
|
+
The Software is and remains the exclusive property of the Licensor. This license does not grant any ownership rights in the Software.
|
|
30
|
+
|
|
31
|
+
## Confidentiality
|
|
32
|
+
|
|
33
|
+
The Software contains proprietary and confidential information. Recipients agree to:
|
|
34
|
+
|
|
35
|
+
1. Maintain the confidentiality of the Software
|
|
36
|
+
2. Use the same degree of care to protect the Software as they use for their own confidential information, but no less than reasonable care
|
|
37
|
+
3. Not disclose the Software to any third party without prior written consent
|
|
38
|
+
|
|
39
|
+
## Termination
|
|
40
|
+
|
|
41
|
+
This license is effective until terminated. The Licensor may terminate this license at any time without notice. Upon termination, all rights granted herein cease immediately, and the recipient must destroy all copies of the Software.
|
|
42
|
+
|
|
43
|
+
## Disclaimer of Warranty
|
|
44
|
+
|
|
45
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
46
|
+
|
|
47
|
+
## Limitation of Liability
|
|
48
|
+
|
|
49
|
+
IN NO EVENT SHALL THE LICENSOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
50
|
+
|
|
51
|
+
## Governing Law
|
|
52
|
+
|
|
53
|
+
This license shall be governed by and construed in accordance with the laws of Indonesia, without regard to its conflict of law provisions.
|
|
54
|
+
|
|
55
|
+
---
|
|
56
|
+
|
|
57
|
+
For licensing inquiries, contact: agra@nexmedis.com
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: maleo-identity
|
|
3
|
+
Version: 0.1.20
|
|
4
|
+
Summary: MaleoIdentity service package
|
|
5
|
+
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: annotated-types>=0.7.0
|
|
11
|
+
Requires-Dist: anyio>=4.11.0
|
|
12
|
+
Requires-Dist: bcrypt>=5.0.0
|
|
13
|
+
Requires-Dist: black>=25.9.0
|
|
14
|
+
Requires-Dist: cachetools>=6.2.1
|
|
15
|
+
Requires-Dist: certifi>=2025.10.5
|
|
16
|
+
Requires-Dist: cffi>=2.0.0
|
|
17
|
+
Requires-Dist: cfgv>=3.4.0
|
|
18
|
+
Requires-Dist: charset-normalizer>=3.4.3
|
|
19
|
+
Requires-Dist: click>=8.3.0
|
|
20
|
+
Requires-Dist: colorama>=0.4.6
|
|
21
|
+
Requires-Dist: cryptography>=46.0.2
|
|
22
|
+
Requires-Dist: distlib>=0.4.0
|
|
23
|
+
Requires-Dist: fastapi>=0.119.0
|
|
24
|
+
Requires-Dist: filelock>=3.20.0
|
|
25
|
+
Requires-Dist: google-api-core>=2.26.0
|
|
26
|
+
Requires-Dist: google-auth>=2.41.1
|
|
27
|
+
Requires-Dist: google-cloud-appengine-logging>=1.6.2
|
|
28
|
+
Requires-Dist: google-cloud-audit-log>=0.3.3
|
|
29
|
+
Requires-Dist: google-cloud-core>=2.4.3
|
|
30
|
+
Requires-Dist: google-cloud-logging>=3.12.1
|
|
31
|
+
Requires-Dist: google-cloud-pubsub>=2.31.1
|
|
32
|
+
Requires-Dist: googleapis-common-protos>=1.70.0
|
|
33
|
+
Requires-Dist: greenlet>=3.2.4
|
|
34
|
+
Requires-Dist: grpc-google-iam-v1>=0.14.2
|
|
35
|
+
Requires-Dist: grpcio>=1.75.1
|
|
36
|
+
Requires-Dist: grpcio-status>=1.75.1
|
|
37
|
+
Requires-Dist: h11>=0.16.0
|
|
38
|
+
Requires-Dist: httpcore>=1.0.9
|
|
39
|
+
Requires-Dist: httpx>=0.28.1
|
|
40
|
+
Requires-Dist: identify>=2.6.15
|
|
41
|
+
Requires-Dist: idna>=3.11
|
|
42
|
+
Requires-Dist: importlib_metadata>=8.7.0
|
|
43
|
+
Requires-Dist: iniconfig>=2.1.0
|
|
44
|
+
Requires-Dist: maleo-crypto>=0.0.50
|
|
45
|
+
Requires-Dist: maleo-enums>=0.0.50
|
|
46
|
+
Requires-Dist: maleo-logging>=0.0.50
|
|
47
|
+
Requires-Dist: maleo-metadata>=0.7.50
|
|
48
|
+
Requires-Dist: maleo-schemas>=0.7.50
|
|
49
|
+
Requires-Dist: maleo-types>=0.0.50
|
|
50
|
+
Requires-Dist: maleo-utils>=0.0.50
|
|
51
|
+
Requires-Dist: mypy_extensions>=1.1.0
|
|
52
|
+
Requires-Dist: nodeenv>=1.9.1
|
|
53
|
+
Requires-Dist: opentelemetry-api>=1.37.0
|
|
54
|
+
Requires-Dist: opentelemetry-sdk>=1.37.0
|
|
55
|
+
Requires-Dist: opentelemetry-semantic-conventions>=0.58b0
|
|
56
|
+
Requires-Dist: packaging>=25.0
|
|
57
|
+
Requires-Dist: pathspec>=0.12.1
|
|
58
|
+
Requires-Dist: platformdirs>=4.5.0
|
|
59
|
+
Requires-Dist: pluggy>=1.6.0
|
|
60
|
+
Requires-Dist: pre_commit>=4.3.0
|
|
61
|
+
Requires-Dist: proto-plus>=1.26.1
|
|
62
|
+
Requires-Dist: protobuf>=6.32.1
|
|
63
|
+
Requires-Dist: pyasn1>=0.6.1
|
|
64
|
+
Requires-Dist: pyasn1_modules>=0.4.2
|
|
65
|
+
Requires-Dist: pycparser>=2.23
|
|
66
|
+
Requires-Dist: pycryptodome>=3.23.0
|
|
67
|
+
Requires-Dist: pydantic>=2.12.2
|
|
68
|
+
Requires-Dist: pydantic-settings>=2.11.0
|
|
69
|
+
Requires-Dist: pydantic_core>=2.41.4
|
|
70
|
+
Requires-Dist: Pygments>=2.19.2
|
|
71
|
+
Requires-Dist: PyJWT>=2.10.1
|
|
72
|
+
Requires-Dist: pytest>=8.4.2
|
|
73
|
+
Requires-Dist: python-dotenv>=1.1.1
|
|
74
|
+
Requires-Dist: pytokens>=0.1.10
|
|
75
|
+
Requires-Dist: PyYAML>=6.0.3
|
|
76
|
+
Requires-Dist: requests>=2.32.5
|
|
77
|
+
Requires-Dist: rsa>=4.9.1
|
|
78
|
+
Requires-Dist: sniffio>=1.3.1
|
|
79
|
+
Requires-Dist: SQLAlchemy>=2.0.44
|
|
80
|
+
Requires-Dist: starlette>=0.48.0
|
|
81
|
+
Requires-Dist: typing-inspection>=0.4.2
|
|
82
|
+
Requires-Dist: typing_extensions>=4.15.0
|
|
83
|
+
Requires-Dist: ua-parser>=1.0.1
|
|
84
|
+
Requires-Dist: ua-parser-builtins>=0.18.0.post1
|
|
85
|
+
Requires-Dist: urllib3>=2.5.0
|
|
86
|
+
Requires-Dist: user-agents>=2.2.0
|
|
87
|
+
Requires-Dist: virtualenv>=20.35.3
|
|
88
|
+
Requires-Dist: zipp>=3.23.0
|
|
89
|
+
Dynamic: license-file
|
|
90
|
+
|
|
91
|
+
# README #
|
|
92
|
+
|
|
93
|
+
This README would normally document whatever steps are necessary to get your application up and running.
|
|
94
|
+
|
|
95
|
+
### What is this repository for? ###
|
|
96
|
+
|
|
97
|
+
* Quick summary
|
|
98
|
+
* Version
|
|
99
|
+
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
|
|
100
|
+
|
|
101
|
+
### How do I get set up? ###
|
|
102
|
+
|
|
103
|
+
* Summary of set up
|
|
104
|
+
* Configuration
|
|
105
|
+
* Dependencies
|
|
106
|
+
* Database configuration
|
|
107
|
+
* How to run tests
|
|
108
|
+
* Deployment instructions
|
|
109
|
+
|
|
110
|
+
### Contribution guidelines ###
|
|
111
|
+
|
|
112
|
+
* Writing tests
|
|
113
|
+
* Code review
|
|
114
|
+
* Other guidelines
|
|
115
|
+
|
|
116
|
+
### Who do I talk to? ###
|
|
117
|
+
|
|
118
|
+
* Repo owner or admin
|
|
119
|
+
* Other community or team contact
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: maleo-identity
|
|
3
|
+
Version: 0.1.20
|
|
4
|
+
Summary: MaleoIdentity service package
|
|
5
|
+
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Requires-Dist: annotated-types>=0.7.0
|
|
11
|
+
Requires-Dist: anyio>=4.11.0
|
|
12
|
+
Requires-Dist: bcrypt>=5.0.0
|
|
13
|
+
Requires-Dist: black>=25.9.0
|
|
14
|
+
Requires-Dist: cachetools>=6.2.1
|
|
15
|
+
Requires-Dist: certifi>=2025.10.5
|
|
16
|
+
Requires-Dist: cffi>=2.0.0
|
|
17
|
+
Requires-Dist: cfgv>=3.4.0
|
|
18
|
+
Requires-Dist: charset-normalizer>=3.4.3
|
|
19
|
+
Requires-Dist: click>=8.3.0
|
|
20
|
+
Requires-Dist: colorama>=0.4.6
|
|
21
|
+
Requires-Dist: cryptography>=46.0.2
|
|
22
|
+
Requires-Dist: distlib>=0.4.0
|
|
23
|
+
Requires-Dist: fastapi>=0.119.0
|
|
24
|
+
Requires-Dist: filelock>=3.20.0
|
|
25
|
+
Requires-Dist: google-api-core>=2.26.0
|
|
26
|
+
Requires-Dist: google-auth>=2.41.1
|
|
27
|
+
Requires-Dist: google-cloud-appengine-logging>=1.6.2
|
|
28
|
+
Requires-Dist: google-cloud-audit-log>=0.3.3
|
|
29
|
+
Requires-Dist: google-cloud-core>=2.4.3
|
|
30
|
+
Requires-Dist: google-cloud-logging>=3.12.1
|
|
31
|
+
Requires-Dist: google-cloud-pubsub>=2.31.1
|
|
32
|
+
Requires-Dist: googleapis-common-protos>=1.70.0
|
|
33
|
+
Requires-Dist: greenlet>=3.2.4
|
|
34
|
+
Requires-Dist: grpc-google-iam-v1>=0.14.2
|
|
35
|
+
Requires-Dist: grpcio>=1.75.1
|
|
36
|
+
Requires-Dist: grpcio-status>=1.75.1
|
|
37
|
+
Requires-Dist: h11>=0.16.0
|
|
38
|
+
Requires-Dist: httpcore>=1.0.9
|
|
39
|
+
Requires-Dist: httpx>=0.28.1
|
|
40
|
+
Requires-Dist: identify>=2.6.15
|
|
41
|
+
Requires-Dist: idna>=3.11
|
|
42
|
+
Requires-Dist: importlib_metadata>=8.7.0
|
|
43
|
+
Requires-Dist: iniconfig>=2.1.0
|
|
44
|
+
Requires-Dist: maleo-crypto>=0.0.50
|
|
45
|
+
Requires-Dist: maleo-enums>=0.0.50
|
|
46
|
+
Requires-Dist: maleo-logging>=0.0.50
|
|
47
|
+
Requires-Dist: maleo-metadata>=0.7.50
|
|
48
|
+
Requires-Dist: maleo-schemas>=0.7.50
|
|
49
|
+
Requires-Dist: maleo-types>=0.0.50
|
|
50
|
+
Requires-Dist: maleo-utils>=0.0.50
|
|
51
|
+
Requires-Dist: mypy_extensions>=1.1.0
|
|
52
|
+
Requires-Dist: nodeenv>=1.9.1
|
|
53
|
+
Requires-Dist: opentelemetry-api>=1.37.0
|
|
54
|
+
Requires-Dist: opentelemetry-sdk>=1.37.0
|
|
55
|
+
Requires-Dist: opentelemetry-semantic-conventions>=0.58b0
|
|
56
|
+
Requires-Dist: packaging>=25.0
|
|
57
|
+
Requires-Dist: pathspec>=0.12.1
|
|
58
|
+
Requires-Dist: platformdirs>=4.5.0
|
|
59
|
+
Requires-Dist: pluggy>=1.6.0
|
|
60
|
+
Requires-Dist: pre_commit>=4.3.0
|
|
61
|
+
Requires-Dist: proto-plus>=1.26.1
|
|
62
|
+
Requires-Dist: protobuf>=6.32.1
|
|
63
|
+
Requires-Dist: pyasn1>=0.6.1
|
|
64
|
+
Requires-Dist: pyasn1_modules>=0.4.2
|
|
65
|
+
Requires-Dist: pycparser>=2.23
|
|
66
|
+
Requires-Dist: pycryptodome>=3.23.0
|
|
67
|
+
Requires-Dist: pydantic>=2.12.2
|
|
68
|
+
Requires-Dist: pydantic-settings>=2.11.0
|
|
69
|
+
Requires-Dist: pydantic_core>=2.41.4
|
|
70
|
+
Requires-Dist: Pygments>=2.19.2
|
|
71
|
+
Requires-Dist: PyJWT>=2.10.1
|
|
72
|
+
Requires-Dist: pytest>=8.4.2
|
|
73
|
+
Requires-Dist: python-dotenv>=1.1.1
|
|
74
|
+
Requires-Dist: pytokens>=0.1.10
|
|
75
|
+
Requires-Dist: PyYAML>=6.0.3
|
|
76
|
+
Requires-Dist: requests>=2.32.5
|
|
77
|
+
Requires-Dist: rsa>=4.9.1
|
|
78
|
+
Requires-Dist: sniffio>=1.3.1
|
|
79
|
+
Requires-Dist: SQLAlchemy>=2.0.44
|
|
80
|
+
Requires-Dist: starlette>=0.48.0
|
|
81
|
+
Requires-Dist: typing-inspection>=0.4.2
|
|
82
|
+
Requires-Dist: typing_extensions>=4.15.0
|
|
83
|
+
Requires-Dist: ua-parser>=1.0.1
|
|
84
|
+
Requires-Dist: ua-parser-builtins>=0.18.0.post1
|
|
85
|
+
Requires-Dist: urllib3>=2.5.0
|
|
86
|
+
Requires-Dist: user-agents>=2.2.0
|
|
87
|
+
Requires-Dist: virtualenv>=20.35.3
|
|
88
|
+
Requires-Dist: zipp>=3.23.0
|
|
89
|
+
Dynamic: license-file
|
|
90
|
+
|
|
91
|
+
# README #
|
|
92
|
+
|
|
93
|
+
This README would normally document whatever steps are necessary to get your application up and running.
|
|
94
|
+
|
|
95
|
+
### What is this repository for? ###
|
|
96
|
+
|
|
97
|
+
* Quick summary
|
|
98
|
+
* Version
|
|
99
|
+
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
|
|
100
|
+
|
|
101
|
+
### How do I get set up? ###
|
|
102
|
+
|
|
103
|
+
* Summary of set up
|
|
104
|
+
* Configuration
|
|
105
|
+
* Dependencies
|
|
106
|
+
* Database configuration
|
|
107
|
+
* How to run tests
|
|
108
|
+
* Deployment instructions
|
|
109
|
+
|
|
110
|
+
### Contribution guidelines ###
|
|
111
|
+
|
|
112
|
+
* Writing tests
|
|
113
|
+
* Code review
|
|
114
|
+
* Other guidelines
|
|
115
|
+
|
|
116
|
+
### Who do I talk to? ###
|
|
117
|
+
|
|
118
|
+
* Repo owner or admin
|
|
119
|
+
* Other community or team contact
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
maleo_identity.egg-info/PKG-INFO
|
|
5
|
+
maleo_identity.egg-info/SOURCES.txt
|
|
6
|
+
maleo_identity.egg-info/dependency_links.txt
|
|
7
|
+
maleo_identity.egg-info/requires.txt
|
|
8
|
+
maleo_identity.egg-info/top_level.txt
|
|
9
|
+
src/__init__.py
|
|
10
|
+
src/constants/__init__.py
|
|
11
|
+
src/constants/api_key.py
|
|
12
|
+
src/constants/organization.py
|
|
13
|
+
src/constants/organization_registration_code.py
|
|
14
|
+
src/constants/organization_relation.py
|
|
15
|
+
src/constants/patient.py
|
|
16
|
+
src/constants/user.py
|
|
17
|
+
src/constants/user_medical_role.py
|
|
18
|
+
src/constants/user_organization_role.py
|
|
19
|
+
src/constants/user_profile.py
|
|
20
|
+
src/constants/user_system_role.py
|
|
21
|
+
src/enums/__init__.py
|
|
22
|
+
src/enums/api_key.py
|
|
23
|
+
src/enums/organization.py
|
|
24
|
+
src/enums/organization_registration_code.py
|
|
25
|
+
src/enums/organization_relation.py
|
|
26
|
+
src/enums/patient.py
|
|
27
|
+
src/enums/user.py
|
|
28
|
+
src/enums/user_medical_role.py
|
|
29
|
+
src/enums/user_organization_role.py
|
|
30
|
+
src/enums/user_profile.py
|
|
31
|
+
src/enums/user_system_role.py
|
|
32
|
+
src/mixins/__init__.py
|
|
33
|
+
src/mixins/api_key.py
|
|
34
|
+
src/mixins/common.py
|
|
35
|
+
src/mixins/organization.py
|
|
36
|
+
src/mixins/organization_registration_code.py
|
|
37
|
+
src/mixins/organization_relation.py
|
|
38
|
+
src/mixins/patient.py
|
|
39
|
+
src/mixins/user.py
|
|
40
|
+
src/mixins/user_medical_role.py
|
|
41
|
+
src/mixins/user_organization_role.py
|
|
42
|
+
src/mixins/user_profile.py
|
|
43
|
+
src/mixins/user_system_role.py
|
|
44
|
+
src/schemas/__init__.py
|
|
45
|
+
src/schemas/api_key.py
|
|
46
|
+
src/schemas/common.py
|
|
47
|
+
src/schemas/organization.py
|
|
48
|
+
src/schemas/organization_registration_code.py
|
|
49
|
+
src/schemas/organization_relation.py
|
|
50
|
+
src/schemas/patient.py
|
|
51
|
+
src/schemas/user.py
|
|
52
|
+
src/schemas/user_medical_role.py
|
|
53
|
+
src/schemas/user_organization_role.py
|
|
54
|
+
src/schemas/user_profile.py
|
|
55
|
+
src/schemas/user_system_role.py
|
|
56
|
+
src/types/__init__.py
|
|
57
|
+
src/types/api_key.py
|
|
58
|
+
src/types/organization.py
|
|
59
|
+
src/types/organization_registration_code.py
|
|
60
|
+
src/types/organization_relation.py
|
|
61
|
+
src/types/patient.py
|
|
62
|
+
src/types/user.py
|
|
63
|
+
src/types/user_medical_role.py
|
|
64
|
+
src/types/user_organization_role.py
|
|
65
|
+
src/types/user_profile.py
|
|
66
|
+
src/types/user_system_role.py
|
|
67
|
+
src/utils/__init__.py
|
|
68
|
+
src/utils/organization.py
|
|
69
|
+
src/utils/user.py
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
annotated-types>=0.7.0
|
|
2
|
+
anyio>=4.11.0
|
|
3
|
+
bcrypt>=5.0.0
|
|
4
|
+
black>=25.9.0
|
|
5
|
+
cachetools>=6.2.1
|
|
6
|
+
certifi>=2025.10.5
|
|
7
|
+
cffi>=2.0.0
|
|
8
|
+
cfgv>=3.4.0
|
|
9
|
+
charset-normalizer>=3.4.3
|
|
10
|
+
click>=8.3.0
|
|
11
|
+
colorama>=0.4.6
|
|
12
|
+
cryptography>=46.0.2
|
|
13
|
+
distlib>=0.4.0
|
|
14
|
+
fastapi>=0.119.0
|
|
15
|
+
filelock>=3.20.0
|
|
16
|
+
google-api-core>=2.26.0
|
|
17
|
+
google-auth>=2.41.1
|
|
18
|
+
google-cloud-appengine-logging>=1.6.2
|
|
19
|
+
google-cloud-audit-log>=0.3.3
|
|
20
|
+
google-cloud-core>=2.4.3
|
|
21
|
+
google-cloud-logging>=3.12.1
|
|
22
|
+
google-cloud-pubsub>=2.31.1
|
|
23
|
+
googleapis-common-protos>=1.70.0
|
|
24
|
+
greenlet>=3.2.4
|
|
25
|
+
grpc-google-iam-v1>=0.14.2
|
|
26
|
+
grpcio>=1.75.1
|
|
27
|
+
grpcio-status>=1.75.1
|
|
28
|
+
h11>=0.16.0
|
|
29
|
+
httpcore>=1.0.9
|
|
30
|
+
httpx>=0.28.1
|
|
31
|
+
identify>=2.6.15
|
|
32
|
+
idna>=3.11
|
|
33
|
+
importlib_metadata>=8.7.0
|
|
34
|
+
iniconfig>=2.1.0
|
|
35
|
+
maleo-crypto>=0.0.50
|
|
36
|
+
maleo-enums>=0.0.50
|
|
37
|
+
maleo-logging>=0.0.50
|
|
38
|
+
maleo-metadata>=0.7.50
|
|
39
|
+
maleo-schemas>=0.7.50
|
|
40
|
+
maleo-types>=0.0.50
|
|
41
|
+
maleo-utils>=0.0.50
|
|
42
|
+
mypy_extensions>=1.1.0
|
|
43
|
+
nodeenv>=1.9.1
|
|
44
|
+
opentelemetry-api>=1.37.0
|
|
45
|
+
opentelemetry-sdk>=1.37.0
|
|
46
|
+
opentelemetry-semantic-conventions>=0.58b0
|
|
47
|
+
packaging>=25.0
|
|
48
|
+
pathspec>=0.12.1
|
|
49
|
+
platformdirs>=4.5.0
|
|
50
|
+
pluggy>=1.6.0
|
|
51
|
+
pre_commit>=4.3.0
|
|
52
|
+
proto-plus>=1.26.1
|
|
53
|
+
protobuf>=6.32.1
|
|
54
|
+
pyasn1>=0.6.1
|
|
55
|
+
pyasn1_modules>=0.4.2
|
|
56
|
+
pycparser>=2.23
|
|
57
|
+
pycryptodome>=3.23.0
|
|
58
|
+
pydantic>=2.12.2
|
|
59
|
+
pydantic-settings>=2.11.0
|
|
60
|
+
pydantic_core>=2.41.4
|
|
61
|
+
Pygments>=2.19.2
|
|
62
|
+
PyJWT>=2.10.1
|
|
63
|
+
pytest>=8.4.2
|
|
64
|
+
python-dotenv>=1.1.1
|
|
65
|
+
pytokens>=0.1.10
|
|
66
|
+
PyYAML>=6.0.3
|
|
67
|
+
requests>=2.32.5
|
|
68
|
+
rsa>=4.9.1
|
|
69
|
+
sniffio>=1.3.1
|
|
70
|
+
SQLAlchemy>=2.0.44
|
|
71
|
+
starlette>=0.48.0
|
|
72
|
+
typing-inspection>=0.4.2
|
|
73
|
+
typing_extensions>=4.15.0
|
|
74
|
+
ua-parser>=1.0.1
|
|
75
|
+
ua-parser-builtins>=0.18.0.post1
|
|
76
|
+
urllib3>=2.5.0
|
|
77
|
+
user-agents>=2.2.0
|
|
78
|
+
virtualenv>=20.35.3
|
|
79
|
+
zipp>=3.23.0
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "maleo-identity"
|
|
7
|
+
version = "0.1.20"
|
|
8
|
+
description = "MaleoIdentity service package"
|
|
9
|
+
authors = [
|
|
10
|
+
{ name = "Agra Bima Yuda", email = "agra@nexmedis.com" }
|
|
11
|
+
]
|
|
12
|
+
license = { text = "Proprietary" }
|
|
13
|
+
readme = "README.md"
|
|
14
|
+
requires-python = ">=3.12"
|
|
15
|
+
dependencies = [
|
|
16
|
+
"annotated-types>=0.7.0",
|
|
17
|
+
"anyio>=4.11.0",
|
|
18
|
+
"bcrypt>=5.0.0",
|
|
19
|
+
"black>=25.9.0",
|
|
20
|
+
"cachetools>=6.2.1",
|
|
21
|
+
"certifi>=2025.10.5",
|
|
22
|
+
"cffi>=2.0.0",
|
|
23
|
+
"cfgv>=3.4.0",
|
|
24
|
+
"charset-normalizer>=3.4.3",
|
|
25
|
+
"click>=8.3.0",
|
|
26
|
+
"colorama>=0.4.6",
|
|
27
|
+
"cryptography>=46.0.2",
|
|
28
|
+
"distlib>=0.4.0",
|
|
29
|
+
"fastapi>=0.119.0",
|
|
30
|
+
"filelock>=3.20.0",
|
|
31
|
+
"google-api-core>=2.26.0",
|
|
32
|
+
"google-auth>=2.41.1",
|
|
33
|
+
"google-cloud-appengine-logging>=1.6.2",
|
|
34
|
+
"google-cloud-audit-log>=0.3.3",
|
|
35
|
+
"google-cloud-core>=2.4.3",
|
|
36
|
+
"google-cloud-logging>=3.12.1",
|
|
37
|
+
"google-cloud-pubsub>=2.31.1",
|
|
38
|
+
"googleapis-common-protos>=1.70.0",
|
|
39
|
+
"greenlet>=3.2.4",
|
|
40
|
+
"grpc-google-iam-v1>=0.14.2",
|
|
41
|
+
"grpcio>=1.75.1",
|
|
42
|
+
"grpcio-status>=1.75.1",
|
|
43
|
+
"h11>=0.16.0",
|
|
44
|
+
"httpcore>=1.0.9",
|
|
45
|
+
"httpx>=0.28.1",
|
|
46
|
+
"identify>=2.6.15",
|
|
47
|
+
"idna>=3.11",
|
|
48
|
+
"importlib_metadata>=8.7.0",
|
|
49
|
+
"iniconfig>=2.1.0",
|
|
50
|
+
"maleo-crypto>=0.0.50",
|
|
51
|
+
"maleo-enums>=0.0.50",
|
|
52
|
+
"maleo-logging>=0.0.50",
|
|
53
|
+
"maleo-metadata>=0.7.50",
|
|
54
|
+
"maleo-schemas>=0.7.50",
|
|
55
|
+
"maleo-types>=0.0.50",
|
|
56
|
+
"maleo-utils>=0.0.50",
|
|
57
|
+
"mypy_extensions>=1.1.0",
|
|
58
|
+
"nodeenv>=1.9.1",
|
|
59
|
+
"opentelemetry-api>=1.37.0",
|
|
60
|
+
"opentelemetry-sdk>=1.37.0",
|
|
61
|
+
"opentelemetry-semantic-conventions>=0.58b0",
|
|
62
|
+
"packaging>=25.0",
|
|
63
|
+
"pathspec>=0.12.1",
|
|
64
|
+
"platformdirs>=4.5.0",
|
|
65
|
+
"pluggy>=1.6.0",
|
|
66
|
+
"pre_commit>=4.3.0",
|
|
67
|
+
"proto-plus>=1.26.1",
|
|
68
|
+
"protobuf>=6.32.1",
|
|
69
|
+
"pyasn1>=0.6.1",
|
|
70
|
+
"pyasn1_modules>=0.4.2",
|
|
71
|
+
"pycparser>=2.23",
|
|
72
|
+
"pycryptodome>=3.23.0",
|
|
73
|
+
"pydantic>=2.12.2",
|
|
74
|
+
"pydantic-settings>=2.11.0",
|
|
75
|
+
"pydantic_core>=2.41.4",
|
|
76
|
+
"Pygments>=2.19.2",
|
|
77
|
+
"PyJWT>=2.10.1",
|
|
78
|
+
"pytest>=8.4.2",
|
|
79
|
+
"python-dotenv>=1.1.1",
|
|
80
|
+
"pytokens>=0.1.10",
|
|
81
|
+
"PyYAML>=6.0.3",
|
|
82
|
+
"requests>=2.32.5",
|
|
83
|
+
"rsa>=4.9.1",
|
|
84
|
+
"sniffio>=1.3.1",
|
|
85
|
+
"SQLAlchemy>=2.0.44",
|
|
86
|
+
"starlette>=0.48.0",
|
|
87
|
+
"typing-inspection>=0.4.2",
|
|
88
|
+
"typing_extensions>=4.15.0",
|
|
89
|
+
"ua-parser>=1.0.1",
|
|
90
|
+
"ua-parser-builtins>=0.18.0.post1",
|
|
91
|
+
"urllib3>=2.5.0",
|
|
92
|
+
"user-agents>=2.2.0",
|
|
93
|
+
"virtualenv>=20.35.3",
|
|
94
|
+
"zipp>=3.23.0",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[tool.setuptools]
|
|
98
|
+
packages = [
|
|
99
|
+
"maleo.identity",
|
|
100
|
+
"maleo.identity.constants",
|
|
101
|
+
"maleo.identity.enums",
|
|
102
|
+
"maleo.identity.mixins",
|
|
103
|
+
"maleo.identity.schemas",
|
|
104
|
+
"maleo.identity.types",
|
|
105
|
+
"maleo.identity.utils",
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
[tool.setuptools.package-data]
|
|
109
|
+
"maleo.identity" = ["*.json", "*.yaml"]
|
|
110
|
+
"maleo.identity.constants" = ["*.json", "*.yaml"]
|
|
111
|
+
"maleo.identity.enums" = ["*.json", "*.yaml"]
|
|
112
|
+
"maleo.identity.mixins" = ["*.json", "*.yaml"]
|
|
113
|
+
"maleo.identity.schemas" = ["*.json", "*.yaml"]
|
|
114
|
+
"maleo.identity.types" = ["*.json", "*.yaml"]
|
|
115
|
+
"maleo.identity.utils" = ["*.json", "*.yaml"]
|
|
116
|
+
|
|
117
|
+
[tool.setuptools.package-dir]
|
|
118
|
+
"maleo.identity" = "src"
|
|
119
|
+
"maleo.identity.constants" = "src/constants"
|
|
120
|
+
"maleo.identity.enums" = "src/enums"
|
|
121
|
+
"maleo.identity.mixins" = "src/mixins"
|
|
122
|
+
"maleo.identity.schemas" = "src/schemas"
|
|
123
|
+
"maleo.identity.types" = "src/types"
|
|
124
|
+
"maleo.identity.utils" = "src/utils"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from maleo.schemas.resource import Resource, ResourceIdentifier
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
ORGANIZATION_REGISTRATION_CODE_RESOURCE = Resource(
|
|
5
|
+
identifiers=[
|
|
6
|
+
ResourceIdentifier(
|
|
7
|
+
key="organization_registration_code",
|
|
8
|
+
name="Organization Registration Code",
|
|
9
|
+
slug="organization-registration-codes",
|
|
10
|
+
)
|
|
11
|
+
],
|
|
12
|
+
details=None,
|
|
13
|
+
)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from maleo.schemas.resource import Resource, ResourceIdentifier
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
ORGANIZATION_RELATION_RESOURCE = Resource(
|
|
5
|
+
identifiers=[
|
|
6
|
+
ResourceIdentifier(
|
|
7
|
+
key="organization_relation",
|
|
8
|
+
name="Organization Relation",
|
|
9
|
+
slug="organization-relations",
|
|
10
|
+
)
|
|
11
|
+
],
|
|
12
|
+
details=None,
|
|
13
|
+
)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from maleo.schemas.resource import Resource, ResourceIdentifier
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
USER_MEDICAL_ROLE_RESOURCE = Resource(
|
|
5
|
+
identifiers=[
|
|
6
|
+
ResourceIdentifier(
|
|
7
|
+
key="user_medical_role",
|
|
8
|
+
name="User Medical Role",
|
|
9
|
+
slug="user-medical-roles",
|
|
10
|
+
)
|
|
11
|
+
],
|
|
12
|
+
details=None,
|
|
13
|
+
)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from maleo.schemas.resource import Resource, ResourceIdentifier
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
USER_ORGANIZATION_ROLE_RESOURCE = Resource(
|
|
5
|
+
identifiers=[
|
|
6
|
+
ResourceIdentifier(
|
|
7
|
+
key="user_organization_role",
|
|
8
|
+
name="User Organization Role",
|
|
9
|
+
slug="user-organization-roles",
|
|
10
|
+
)
|
|
11
|
+
],
|
|
12
|
+
details=None,
|
|
13
|
+
)
|