maleo-identity 0.0.91__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.

Files changed (109) hide show
  1. maleo/identity/constants/organization.py +15 -8
  2. maleo/identity/constants/organization_registration_code.py +10 -7
  3. maleo/identity/constants/user.py +11 -13
  4. maleo/identity/constants/user_profile.py +9 -12
  5. maleo/identity/enums/organization.py +4 -4
  6. maleo/identity/enums/organization_registration_code.py +5 -0
  7. maleo/identity/enums/user.py +4 -8
  8. maleo/identity/enums/user_profile.py +4 -10
  9. maleo/identity/mixins/organization.py +10 -8
  10. maleo/identity/mixins/organization_registration_code.py +8 -11
  11. maleo/identity/mixins/user.py +17 -31
  12. maleo/identity/mixins/user_profile.py +37 -67
  13. maleo/identity/models.py +313 -0
  14. maleo/identity/schemas/common.py +257 -0
  15. maleo/identity/schemas/organization.py +162 -0
  16. maleo/identity/schemas/organization_registration_code.py +162 -0
  17. maleo/identity/schemas/user.py +181 -0
  18. maleo/identity/schemas/user_profile.py +212 -0
  19. maleo/identity/types/{base/organization_registration_code.py → user_profile.py} +2 -1
  20. maleo_identity-0.0.92.dist-info/METADATA +118 -0
  21. maleo_identity-0.0.92.dist-info/RECORD +33 -0
  22. maleo_identity-0.0.92.dist-info/licenses/LICENSE +57 -0
  23. maleo/identity/client/__init__.py +0 -0
  24. maleo/identity/client/manager.py +0 -157
  25. maleo/identity/client/services/__init__.py +0 -0
  26. maleo/identity/client/services/organization.py +0 -1944
  27. maleo/identity/client/services/organization_registration_code.py +0 -470
  28. maleo/identity/client/services/organization_role.py +0 -276
  29. maleo/identity/client/services/user.py +0 -1559
  30. maleo/identity/client/services/user_organization.py +0 -276
  31. maleo/identity/client/services/user_organization_role.py +0 -278
  32. maleo/identity/client/services/user_profile.py +0 -276
  33. maleo/identity/client/services/user_system_role.py +0 -276
  34. maleo/identity/constants/organization_role.py +0 -35
  35. maleo/identity/constants/user_organization.py +0 -58
  36. maleo/identity/constants/user_organization_role.py +0 -47
  37. maleo/identity/constants/user_system_role.py +0 -16
  38. maleo/identity/db.py +0 -4
  39. maleo/identity/dtos/__init__.py +0 -0
  40. maleo/identity/dtos/configuration.py +0 -15
  41. maleo/identity/dtos/data/__init__.py +0 -0
  42. maleo/identity/dtos/data/organization_registration_code.py +0 -15
  43. maleo/identity/dtos/data/user_profile.py +0 -33
  44. maleo/identity/dtos/data/user_system_role.py +0 -9
  45. maleo/identity/dtos/settings.py +0 -17
  46. maleo/identity/enums/general.py +0 -5
  47. maleo/identity/enums/organization_role.py +0 -7
  48. maleo/identity/enums/user_organization.py +0 -14
  49. maleo/identity/enums/user_organization_role.py +0 -15
  50. maleo/identity/enums/user_system_role.py +0 -5
  51. maleo/identity/mixins/organization_role.py +0 -15
  52. maleo/identity/mixins/user_organization.py +0 -6
  53. maleo/identity/mixins/user_organization_role.py +0 -6
  54. maleo/identity/mixins/user_system_role.py +0 -6
  55. maleo/identity/models/__init__.py +0 -0
  56. maleo/identity/models/organization.py +0 -62
  57. maleo/identity/models/organization_registration_code.py +0 -33
  58. maleo/identity/models/organization_role.py +0 -37
  59. maleo/identity/models/user.py +0 -39
  60. maleo/identity/models/user_organization.py +0 -48
  61. maleo/identity/models/user_organization_role.py +0 -61
  62. maleo/identity/models/user_profile.py +0 -33
  63. maleo/identity/models/user_system_role.py +0 -26
  64. maleo/identity/schemas/data/__init__.py +0 -0
  65. maleo/identity/schemas/data/organization.py +0 -36
  66. maleo/identity/schemas/data/organization_registration_code.py +0 -27
  67. maleo/identity/schemas/data/organization_role.py +0 -32
  68. maleo/identity/schemas/data/user.py +0 -33
  69. maleo/identity/schemas/data/user_organization.py +0 -23
  70. maleo/identity/schemas/data/user_organization_role.py +0 -13
  71. maleo/identity/schemas/data/user_profile.py +0 -59
  72. maleo/identity/schemas/data/user_system_role.py +0 -25
  73. maleo/identity/schemas/metadata/__init__.py +0 -0
  74. maleo/identity/schemas/metadata/user.py +0 -6
  75. maleo/identity/schemas/parameter/__init__.py +0 -0
  76. maleo/identity/schemas/parameter/client/__init__.py +0 -0
  77. maleo/identity/schemas/parameter/client/organization.py +0 -74
  78. maleo/identity/schemas/parameter/client/organization_registration_code.py +0 -24
  79. maleo/identity/schemas/parameter/client/organization_role.py +0 -42
  80. maleo/identity/schemas/parameter/client/user.py +0 -44
  81. maleo/identity/schemas/parameter/client/user_organization.py +0 -62
  82. maleo/identity/schemas/parameter/client/user_organization_role.py +0 -49
  83. maleo/identity/schemas/parameter/client/user_profile.py +0 -28
  84. maleo/identity/schemas/parameter/client/user_system_role.py +0 -43
  85. maleo/identity/schemas/parameter/general/__init__.py +0 -0
  86. maleo/identity/schemas/parameter/general/organization.py +0 -92
  87. maleo/identity/schemas/parameter/general/organization_registration_code.py +0 -86
  88. maleo/identity/schemas/parameter/general/organization_role.py +0 -14
  89. maleo/identity/schemas/parameter/general/user.py +0 -150
  90. maleo/identity/schemas/parameter/general/user_organization.py +0 -18
  91. maleo/identity/schemas/parameter/general/user_organization_role.py +0 -15
  92. maleo/identity/schemas/parameter/general/user_profile.py +0 -119
  93. maleo/identity/schemas/parameter/general/user_system_role.py +0 -30
  94. maleo/identity/schemas/parameter/service/__init__.py +0 -0
  95. maleo/identity/schemas/parameter/service/organization.py +0 -60
  96. maleo/identity/schemas/parameter/service/organization_registration_code.py +0 -24
  97. maleo/identity/schemas/parameter/service/organization_role.py +0 -35
  98. maleo/identity/schemas/parameter/service/user.py +0 -47
  99. maleo/identity/schemas/parameter/service/user_organization_role.py +0 -36
  100. maleo/identity/schemas/parameter/service/user_profile.py +0 -28
  101. maleo/identity/schemas/parameter/service/user_system_role.py +0 -31
  102. maleo/identity/types/base/__init__.py +0 -0
  103. maleo_identity-0.0.91.dist-info/METADATA +0 -39
  104. maleo_identity-0.0.91.dist-info/RECORD +0 -106
  105. /maleo/identity/types/{base/organization.py → organization.py} +0 -0
  106. /maleo/identity/types/{base/user.py → organization_registration_code.py} +0 -0
  107. /maleo/identity/types/{base/user_profile.py → user.py} +0 -0
  108. {maleo_identity-0.0.91.dist-info → maleo_identity-0.0.92.dist-info}/WHEEL +0 -0
  109. {maleo_identity-0.0.91.dist-info → maleo_identity-0.0.92.dist-info}/top_level.txt +0 -0
File without changes
@@ -1,39 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: maleo-identity
3
- Version: 0.0.91
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-metadata>=0.2.52
10
-
11
- # README #
12
-
13
- This README would normally document whatever steps are necessary to get your application up and running.
14
-
15
- ### What is this repository for? ###
16
-
17
- * Quick summary
18
- * Version
19
- * [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
20
-
21
- ### How do I get set up? ###
22
-
23
- * Summary of set up
24
- * Configuration
25
- * Dependencies
26
- * Database configuration
27
- * How to run tests
28
- * Deployment instructions
29
-
30
- ### Contribution guidelines ###
31
-
32
- * Writing tests
33
- * Code review
34
- * Other guidelines
35
-
36
- ### Who do I talk to? ###
37
-
38
- * Repo owner or admin
39
- * Other community or team contact
@@ -1,106 +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=06a_RKel0SBVJiK59yI7--KUSOZOCDd6E-xZ8nk329U,1159
18
- maleo/identity/constants/user.py,sha256=etUWIFLT_G8ww713bOYzVcEs6K-reu_Tggf5AzemjxA,859
19
- maleo/identity/constants/user_organization.py,sha256=QMpOfECd6orwOtVXCgzY7_hm8oQ8ufOx966pWXTGiqw,2247
20
- maleo/identity/constants/user_organization_role.py,sha256=wFzd760wYkOSQWES2xuDYjDeSQmOhU6fI9FXXqz79xE,1719
21
- maleo/identity/constants/user_profile.py,sha256=DVl6dwUAWTMegQiwyvbC5l9Gb22s2otii9nNb1Elfqg,861
22
- maleo/identity/constants/user_system_role.py,sha256=SizNJvjlegfY3g6Xqha2hSLK2fm6zoBwrdhH7jSnJgE,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=DX5YfImnj2jnKp30BLHFKwEhvicXUdcUOLU3XDWhj7Y,668
29
- maleo/identity/dtos/data/user_system_role.py,sha256=zhXByLmMHR_-dZ-SpbMd4i9CAC1503Tret2-o1tbwNQ,197
30
- maleo/identity/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
- maleo/identity/enums/general.py,sha256=jR831PHPLErbT224_bKDvIHYFND0hF6yvN9cma58Vp8,82
32
- maleo/identity/enums/organization.py,sha256=bwuUjQEuh5p4OyEN0mLnO-Pytmr2-ZvgXua-MvVVVXY,228
33
- maleo/identity/enums/organization_registration_code.py,sha256=g4AOcf2aN36LCjA1GZEfwSSReKXsYRAZ-nrvTuVxXOk,148
34
- maleo/identity/enums/organization_role.py,sha256=DsmoysanUwpbxent1TzYSkythWav3ecrSw8URrPoROI,207
35
- maleo/identity/enums/user.py,sha256=X4tWk-v27bCsaO5M5ziABxoO92hydkkKcEAXxG0UbRU,385
36
- maleo/identity/enums/user_organization.py,sha256=46vQHrrxqLLIPVUW9gh40Q921TXW5XQYaGFMRpEue6g,440
37
- maleo/identity/enums/user_organization_role.py,sha256=Niw_LokN03jWCMO07oKz4J2DQku0TnaZIuQRdUXn1ds,494
38
- maleo/identity/enums/user_profile.py,sha256=a5NtYUsI28T_hLO6D3BYsMt_bQqcxn01SP68kZ_Wukc,345
39
- maleo/identity/enums/user_system_role.py,sha256=zhi4ZtdZkwSMuRzm18LujKkJTq5fIVDLhO3G-iiEmRA,91
40
- maleo/identity/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- maleo/identity/mixins/organization.py,sha256=M1LJkcxs0SUfW8Wn7G1OTeZH8XOy9-CPJz5GBcx20sU,422
42
- maleo/identity/mixins/organization_registration_code.py,sha256=Ey5R6vwRa0fTENqxkL1aC5Z7YM98lwXb2gzFNpDb1jg,507
43
- maleo/identity/mixins/organization_role.py,sha256=AeND34fmAt82IrzsrrPY_DG41r6vvZjpvrgNx5hvyis,435
44
- maleo/identity/mixins/user.py,sha256=cLhcCWhZUYEekusT_enkUV5zJz1huDPxB_xMpn7d8UU,1350
45
- maleo/identity/mixins/user_organization.py,sha256=b697CDDE0ZiF-inj7vKOr545Vw9cHpKH1LU0u7BzocQ,186
46
- maleo/identity/mixins/user_organization_role.py,sha256=w0NkPQqjZBrrfrRRtc1RY2ylfNx17MXprAGbVPeOBuA,191
47
- maleo/identity/mixins/user_profile.py,sha256=MHnqHJ2T5GyJdcsmPkn4sl-4CfizDCt571uKqDgMRVM,2239
48
- maleo/identity/mixins/user_system_role.py,sha256=DHrFFpfrpude8RvOnPucUgTsqvtYXI8VpNmLClbEX8w,185
49
- maleo/identity/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
- maleo/identity/models/organization.py,sha256=g4SjhPkP-IQAs29pfACt4lpi8TkMVhilfmEJFSPcuXA,2020
51
- maleo/identity/models/organization_registration_code.py,sha256=zTWVIwwQuXH4S9hsTZ_wuMV7nEd_v-2BIyv85lSPRJw,1111
52
- maleo/identity/models/organization_role.py,sha256=47hgWuJFeRKaVoLrI6mJtd2TrEVAnl2-kjgvdtv3r3c,1226
53
- maleo/identity/models/user.py,sha256=O-98sIrmfqAGVWrKD5KhijRIuQ7MD7CBAeY9ckTzux0,1287
54
- maleo/identity/models/user_organization.py,sha256=5l28DHEq7hlBYsBXBP1OHcqnn7WqQhcjDfJC-aWDgFc,1281
55
- maleo/identity/models/user_organization_role.py,sha256=wwAJJY_7KwMx-sEWmfbnd9lNyxDDCcWmGpyVg9WtmC4,1866
56
- maleo/identity/models/user_profile.py,sha256=_coKr4N069ON0VRrA4VdA9W8qzQWS6-BOpJWwN_vKSE,1557
57
- maleo/identity/models/user_system_role.py,sha256=TtyQRO_OE9kbRDNprPQc-2Vc0tP3cY7nlR014ptRC7s,855
58
- maleo/identity/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
- maleo/identity/schemas/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
- maleo/identity/schemas/data/organization.py,sha256=3cCZ6AX4r7VeW9ybaiFfq6mfpY84dnFreetP77Wv_vE,1053
61
- maleo/identity/schemas/data/organization_registration_code.py,sha256=JF5eSH0o1-2B9rqap1-2Q1gw3zs1TMs2qTIEX9h87dU,826
62
- maleo/identity/schemas/data/organization_role.py,sha256=LKqLNdZ5dMxF_Wb4x7MozsAZKFQIt2aLatZdcuhex3Q,879
63
- maleo/identity/schemas/data/user.py,sha256=jZypPr7IN2ccOd2sqWm0mDBKd5e4djwMTjpVwoG4ED4,908
64
- maleo/identity/schemas/data/user_organization.py,sha256=BBgBhGk2ADMuzubyNuEHh-gfo5orU_YnYxEy9F6Qg6s,593
65
- maleo/identity/schemas/data/user_organization_role.py,sha256=F_9f3JmoeQeXsTWlMUUwXkI5jGZbAKHQ6A4Y4py2YpU,414
66
- maleo/identity/schemas/data/user_profile.py,sha256=tDSe_6HWFJ9wIBGi0qhgW1k2uL5mXnhhATFPF5V3Pd0,1345
67
- maleo/identity/schemas/data/user_system_role.py,sha256=ShlShEpAi3YZF_WYu2EbYvlR1r1KtvgSwKwdXLte4bs,640
68
- maleo/identity/schemas/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
- maleo/identity/schemas/metadata/user.py,sha256=or2OucbCiTquOtgWliVD0q_HWifBiDNJghxaymFxbzs,208
70
- maleo/identity/schemas/parameter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- maleo/identity/schemas/parameter/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
72
- maleo/identity/schemas/parameter/client/organization.py,sha256=rhy2V7tNw6FvJ6wWSLGO4tmKMAvj5pddTUrLJpkHDrk,1679
73
- maleo/identity/schemas/parameter/client/organization_registration_code.py,sha256=oafDNzk0DA2l6VlVgOJl8xKc_pzE3D50O_vaN9OeJsI,620
74
- maleo/identity/schemas/parameter/client/organization_role.py,sha256=QQwMt05vO3GljjPozZg0bPxYRNyir402cSKU_6eR3cY,974
75
- maleo/identity/schemas/parameter/client/user.py,sha256=mL1BWNe3EsfdPEeqaG6fvINApGdn-VTEGhr3e5FMwkE,1311
76
- maleo/identity/schemas/parameter/client/user_organization.py,sha256=TcGdpd7a_pWECSyd-DT-spsGwFJdk8nDZSNcJ6hyTKU,1314
77
- maleo/identity/schemas/parameter/client/user_organization_role.py,sha256=c-KA-zSl7B1C0LuroiTunaSqsHJmkpG_bNP9LjG14Yo,1101
78
- maleo/identity/schemas/parameter/client/user_profile.py,sha256=rGrQJVXcA95WNt26t0P1vA-LkdJu_KIxhzZO3FlIHbQ,843
79
- maleo/identity/schemas/parameter/client/user_system_role.py,sha256=s0Vjqy0ovONd99uiXSODJ4Tiublp8NFbtkzH3Bt9kqw,1058
80
- maleo/identity/schemas/parameter/general/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
- maleo/identity/schemas/parameter/general/organization.py,sha256=pfWcxl-ArKJr0pc6OwIwQRhiinRZkM70xVogBAU-tYk,2690
82
- maleo/identity/schemas/parameter/general/organization_registration_code.py,sha256=i5zgH04gtVLDjilIBCzummtxvpwywArLJ2jIMuCuEJ8,2287
83
- maleo/identity/schemas/parameter/general/organization_role.py,sha256=udLNHhnDWPLZ3w-lugggoCTKAAxYcuA1BgnZkZ8xfuY,471
84
- maleo/identity/schemas/parameter/general/user.py,sha256=TCeaX99u1DiWA8-kXXeElZClKORkESorvUUMrDLGZzM,3755
85
- maleo/identity/schemas/parameter/general/user_organization.py,sha256=NCA36WNNgcp5Ns38wddcTfse8zFw1JX6G34D5hF99Fk,544
86
- maleo/identity/schemas/parameter/general/user_organization_role.py,sha256=V6nehocfLLv3bLZb4cNiLMRCWUinVlmLGV4YUyuXigI,543
87
- maleo/identity/schemas/parameter/general/user_profile.py,sha256=joB-iIqxJb3vhibytElEtHvo3KXnqvTiVQBdcvdLFqE,3155
88
- maleo/identity/schemas/parameter/general/user_system_role.py,sha256=QPUINuJkIUMUV3WhnT6piApc9xZjBnFzQOGtgrwWWAo,658
89
- maleo/identity/schemas/parameter/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
- maleo/identity/schemas/parameter/service/organization.py,sha256=hcHEiyrEgv6vI6XR0VeZXZjJWWn1opv2v37X90faDI4,1392
91
- maleo/identity/schemas/parameter/service/organization_registration_code.py,sha256=XFy7k1K3NpYFjnEtT-XZQfFBJHduWU5OucJexquxPos,567
92
- maleo/identity/schemas/parameter/service/organization_role.py,sha256=qIr9SQuGfkxJPj3jjhVLyKyiOlNgnDrGrcgTQaRmz0I,777
93
- maleo/identity/schemas/parameter/service/user.py,sha256=27i5PSsdvZ2WOuT56rhWofuXS6UasDncDo2_EpDJmQ8,1325
94
- maleo/identity/schemas/parameter/service/user_organization_role.py,sha256=Hx4DlvWR32mHqF-UueBbXVfrh237gpMF_W7NdDnNcDI,858
95
- maleo/identity/schemas/parameter/service/user_profile.py,sha256=meY0c3ac-89-kRZme5-BV4tm1wg3MqIieKLnzEXst5o,844
96
- maleo/identity/schemas/parameter/service/user_system_role.py,sha256=gnYDrxf_SUQKAgszfSst0huQdL0751-QmZRnbif1460,817
97
- maleo/identity/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
- maleo/identity/types/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
- maleo/identity/types/base/organization.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
100
- maleo/identity/types/base/organization_registration_code.py,sha256=V8cct7fTIO-OT7RoYuui__oblyIUzFdQWOwHfhflpUc,87
101
- maleo/identity/types/base/user.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
102
- maleo/identity/types/base/user_profile.py,sha256=wLu9QcVDfiMke3-Smfs-LI3zV5QiMuCKkoa0CCRmh4s,93
103
- maleo_identity-0.0.91.dist-info/METADATA,sha256=-orLex05_KHTLA7SGkfkzYrkhuSmKilUrsGZ_15C1Go,828
104
- maleo_identity-0.0.91.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
105
- maleo_identity-0.0.91.dist-info/top_level.txt,sha256=3Tpd1siVsfYoeI9FEOJNYnffx_shzZ3wsPpTvz5bljc,6
106
- maleo_identity-0.0.91.dist-info/RECORD,,
File without changes