maleo-identity 0.0.99__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/mixins/common.py +4 -4
- {maleo_identity-0.0.99.dist-info → maleo_identity-0.0.100.dist-info}/METADATA +8 -8
- {maleo_identity-0.0.99.dist-info → maleo_identity-0.0.100.dist-info}/RECORD +6 -6
- {maleo_identity-0.0.99.dist-info → maleo_identity-0.0.100.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.99.dist-info → maleo_identity-0.0.100.dist-info}/licenses/LICENSE +0 -0
- {maleo_identity-0.0.99.dist-info → maleo_identity-0.0.100.dist-info}/top_level.txt +0 -0
maleo/identity/mixins/common.py
CHANGED
|
@@ -9,21 +9,21 @@ from maleo.schemas.mixins.identity import (
|
|
|
9
9
|
from maleo.types.string import OptStrT
|
|
10
10
|
|
|
11
11
|
|
|
12
|
-
class IdCard(BaseIdCard, Generic[OptStrT]):
|
|
12
|
+
class IdCard(BaseIdCard[OptStrT], Generic[OptStrT]):
|
|
13
13
|
id_card: Annotated[OptStrT, Field(..., description="Id Card", max_length=16)]
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
class FullName(BaseFullName, Generic[OptStrT]):
|
|
16
|
+
class FullName(BaseFullName[OptStrT], Generic[OptStrT]):
|
|
17
17
|
full_name: Annotated[OptStrT, Field(..., description="Full Name", max_length=200)]
|
|
18
18
|
|
|
19
19
|
|
|
20
|
-
class BirthPlace(BaseBirthPlace, Generic[OptStrT]):
|
|
20
|
+
class BirthPlace(BaseBirthPlace[OptStrT], Generic[OptStrT]):
|
|
21
21
|
birth_place: Annotated[
|
|
22
22
|
OptStrT, Field(..., description="Birth Place", max_length=50)
|
|
23
23
|
]
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
class PlaceOfBirth(BasePlaceOfBirth, Generic[OptStrT]):
|
|
26
|
+
class PlaceOfBirth(BasePlaceOfBirth[OptStrT], Generic[OptStrT]):
|
|
27
27
|
place_of_birth: Annotated[
|
|
28
28
|
OptStrT, Field(..., description="Place of Birth", max_length=50)
|
|
29
29
|
]
|
|
@@ -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,13 +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-metadata>=0.
|
|
48
|
-
Requires-Dist: maleo-schemas>=0.1.
|
|
49
|
-
Requires-Dist: maleo-types>=0.0.
|
|
50
|
-
Requires-Dist: maleo-utils>=0.0.
|
|
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
|
|
51
51
|
Requires-Dist: mypy_extensions>=1.1.0
|
|
52
52
|
Requires-Dist: nodeenv>=1.9.1
|
|
53
53
|
Requires-Dist: opentelemetry-api>=1.37.0
|
|
@@ -25,7 +25,7 @@ maleo/identity/enums/user_profile.py,sha256=Kujd6xyDluP5M2DogR5Esw8TViFartjMY1jl
|
|
|
25
25
|
maleo/identity/enums/user_system_role.py,sha256=jH9AIYKhxPtK-I02KVrYfZ9Wdo-KNCFk0rDBauwt-Ps,252
|
|
26
26
|
maleo/identity/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
27
|
maleo/identity/mixins/api_key.py,sha256=btlTZkJxhLyxj0T50ZBJnSUwiDIJl4Dz7oNl7Ftc9WM,173
|
|
28
|
-
maleo/identity/mixins/common.py,sha256=
|
|
28
|
+
maleo/identity/mixins/common.py,sha256=diWtUiPMI_ypHtDrmI5y8IArxCdomo9Gt6X69iFhyuw,905
|
|
29
29
|
maleo/identity/mixins/organization.py,sha256=KMl7Zz_SXu6SvF_1fTibN2vORFGWH7P22cxS_T4KXmE,574
|
|
30
30
|
maleo/identity/mixins/organization_registration_code.py,sha256=G-kgdf2IzKENEyZcV6IXT69eAemnqR1vph3hhG3l1y4,508
|
|
31
31
|
maleo/identity/mixins/organization_relation.py,sha256=fALtOSx9gIEuzDdykKAWiPkCjStJxo4q8UzUTAdoq2s,453
|
|
@@ -60,8 +60,8 @@ maleo/identity/utils/organization.py,sha256=jU-PLlxPbsRciid82p-ScdLSydspI-5ofJX7
|
|
|
60
60
|
maleo/identity/utils/user.py,sha256=Mk1NTrViz1nBJxtPZRWdQmYHjTPxxc61a02eyikEBoU,1459
|
|
61
61
|
maleo/identity/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
62
|
maleo/identity/validators/patient.py,sha256=b4krKsXMuwUCXYuzCeUXtOXNTaEkKtQaAYmAmuVYIgo,221
|
|
63
|
-
maleo_identity-0.0.
|
|
64
|
-
maleo_identity-0.0.
|
|
65
|
-
maleo_identity-0.0.
|
|
66
|
-
maleo_identity-0.0.
|
|
67
|
-
maleo_identity-0.0.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|