maleo-identity 0.0.90__py3-none-any.whl → 0.0.92__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/organization.py +15 -8
- maleo/identity/constants/organization_registration_code.py +10 -7
- maleo/identity/constants/user.py +11 -13
- maleo/identity/constants/user_profile.py +9 -12
- maleo/identity/enums/organization.py +4 -4
- maleo/identity/enums/organization_registration_code.py +5 -0
- maleo/identity/enums/user.py +4 -8
- maleo/identity/enums/user_profile.py +4 -10
- maleo/identity/mixins/organization.py +10 -8
- maleo/identity/mixins/organization_registration_code.py +8 -11
- maleo/identity/mixins/user.py +17 -31
- maleo/identity/mixins/user_profile.py +37 -67
- maleo/identity/models.py +313 -0
- maleo/identity/schemas/common.py +257 -0
- maleo/identity/schemas/organization.py +162 -0
- maleo/identity/schemas/organization_registration_code.py +162 -0
- maleo/identity/schemas/user.py +181 -0
- maleo/identity/schemas/user_profile.py +212 -0
- maleo/identity/types/{base/organization_registration_code.py → user_profile.py} +2 -1
- maleo_identity-0.0.92.dist-info/METADATA +118 -0
- maleo_identity-0.0.92.dist-info/RECORD +33 -0
- maleo_identity-0.0.92.dist-info/licenses/LICENSE +57 -0
- maleo/identity/client/__init__.py +0 -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/constants/user_organization_role.py +0 -47
- maleo/identity/constants/user_system_role.py +0 -16
- 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/enums/user_organization_role.py +0 -15
- maleo/identity/enums/user_system_role.py +0 -5
- maleo/identity/mixins/organization_role.py +0 -15
- maleo/identity/mixins/user_organization.py +0 -6
- maleo/identity/mixins/user_organization_role.py +0 -6
- maleo/identity/mixins/user_system_role.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 -92
- maleo/identity/schemas/parameter/general/organization_registration_code.py +0 -86
- maleo/identity/schemas/parameter/general/organization_role.py +0 -14
- maleo/identity/schemas/parameter/general/user.py +0 -150
- 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 -119
- 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-0.0.90.dist-info/METADATA +0 -40
- maleo_identity-0.0.90.dist-info/RECORD +0 -105
- /maleo/identity/types/{base/organization.py → organization.py} +0 -0
- /maleo/identity/types/{base/user.py → organization_registration_code.py} +0 -0
- /maleo/identity/types/{base/user_profile.py → user.py} +0 -0
- {maleo_identity-0.0.90.dist-info → maleo_identity-0.0.92.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.90.dist-info → maleo_identity-0.0.92.dist-info}/top_level.txt +0 -0
|
File without changes
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: maleo-identity
|
|
3
|
-
Version: 0.0.90
|
|
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.93
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.2.50
|
|
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=kUVOR3pqSuAPzyG4XoH0MmKkaez9XWGKS4qtzOtKWE4,345
|
|
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=SuDfsojK67XsCXkSxgxKsXAX8TbydFSc_ruBI0E8njo,2679
|
|
81
|
-
maleo/identity/schemas/parameter/general/organization_registration_code.py,sha256=i5zgH04gtVLDjilIBCzummtxvpwywArLJ2jIMuCuEJ8,2287
|
|
82
|
-
maleo/identity/schemas/parameter/general/organization_role.py,sha256=jxNZsLyI2F0v_dntw6XGKchL06RCCQP2LCdzQvvihG0,468
|
|
83
|
-
maleo/identity/schemas/parameter/general/user.py,sha256=Z8Sy-8XEEal1rGModPMFHQ0QPGsmieOuZsSd73KmDDc,3743
|
|
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=keHf1Eiy-RqD9Ng7Yhi6_5h4eTZ9lxvg8TZVO8XZRi4,3145
|
|
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.90.dist-info/METADATA,sha256=d2AUjOyeQnX504tdEUOw7D50aq9yOPE9hDVrzm0DwUc,862
|
|
103
|
-
maleo_identity-0.0.90.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
104
|
-
maleo_identity-0.0.90.dist-info/top_level.txt,sha256=3Tpd1siVsfYoeI9FEOJNYnffx_shzZ3wsPpTvz5bljc,6
|
|
105
|
-
maleo_identity-0.0.90.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|