maleo-identity 0.0.73__py3-none-any.whl → 0.0.76__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 (142) hide show
  1. {maleo_identity-0.0.73.dist-info → maleo_identity-0.0.76.dist-info}/METADATA +3 -3
  2. maleo_identity-0.0.76.dist-info/RECORD +4 -0
  3. maleo_identity-0.0.76.dist-info/top_level.txt +1 -0
  4. maleo_identity/__init__.py +0 -0
  5. maleo_identity/client/__init__.py +0 -0
  6. maleo_identity/client/controllers/__init__.py +0 -17
  7. maleo_identity/client/controllers/http/__init__.py +0 -0
  8. maleo_identity/client/controllers/http/organization.py +0 -647
  9. maleo_identity/client/controllers/http/user.py +0 -541
  10. maleo_identity/client/manager.py +0 -77
  11. maleo_identity/client/services/__init__.py +0 -11
  12. maleo_identity/client/services/organization.py +0 -968
  13. maleo_identity/client/services/user.py +0 -817
  14. maleo_identity/constants/__init__.py +0 -17
  15. maleo_identity/constants/organization.py +0 -13
  16. maleo_identity/constants/organization_registration_code.py +0 -14
  17. maleo_identity/constants/organization_role.py +0 -22
  18. maleo_identity/constants/user.py +0 -27
  19. maleo_identity/constants/user_organization.py +0 -46
  20. maleo_identity/constants/user_organization_role.py +0 -35
  21. maleo_identity/constants/user_profile.py +0 -20
  22. maleo_identity/constants/user_system_role.py +0 -9
  23. maleo_identity/db.py +0 -6
  24. maleo_identity/enums/__init__.py +0 -19
  25. maleo_identity/enums/general.py +0 -5
  26. maleo_identity/enums/organization.py +0 -11
  27. maleo_identity/enums/organization_registration_code.py +0 -8
  28. maleo_identity/enums/organization_role.py +0 -7
  29. maleo_identity/enums/user.py +0 -16
  30. maleo_identity/enums/user_organization.py +0 -14
  31. maleo_identity/enums/user_organization_role.py +0 -15
  32. maleo_identity/enums/user_profile.py +0 -15
  33. maleo_identity/enums/user_system_role.py +0 -5
  34. maleo_identity/models/__init__.py +0 -11
  35. maleo_identity/models/responses/__init__.py +0 -17
  36. maleo_identity/models/responses/organization.py +0 -58
  37. maleo_identity/models/responses/organization_registration_code.py +0 -46
  38. maleo_identity/models/responses/organization_role.py +0 -25
  39. maleo_identity/models/responses/user.py +0 -68
  40. maleo_identity/models/responses/user_organization.py +0 -25
  41. maleo_identity/models/responses/user_organization_role.py +0 -25
  42. maleo_identity/models/responses/user_profile.py +0 -46
  43. maleo_identity/models/responses/user_system_role.py +0 -25
  44. maleo_identity/models/schemas/__init__.py +0 -19
  45. maleo_identity/models/schemas/general.py +0 -18
  46. maleo_identity/models/schemas/organization.py +0 -25
  47. maleo_identity/models/schemas/organization_registration_code.py +0 -21
  48. maleo_identity/models/schemas/organization_role.py +0 -15
  49. maleo_identity/models/schemas/user.py +0 -44
  50. maleo_identity/models/schemas/user_organization.py +0 -8
  51. maleo_identity/models/schemas/user_organization_role.py +0 -15
  52. maleo_identity/models/schemas/user_profile.py +0 -57
  53. maleo_identity/models/schemas/user_system_role.py +0 -8
  54. maleo_identity/models/tables/__init__.py +0 -19
  55. maleo_identity/models/tables/organization.py +0 -58
  56. maleo_identity/models/tables/organization_registration_code.py +0 -37
  57. maleo_identity/models/tables/organization_role.py +0 -43
  58. maleo_identity/models/tables/user.py +0 -43
  59. maleo_identity/models/tables/user_organization.py +0 -58
  60. maleo_identity/models/tables/user_organization_role.py +0 -69
  61. maleo_identity/models/tables/user_profile.py +0 -31
  62. maleo_identity/models/tables/user_system_role.py +0 -24
  63. maleo_identity/models/transfers/__init__.py +0 -9
  64. maleo_identity/models/transfers/general/__init__.py +0 -17
  65. maleo_identity/models/transfers/general/organization.py +0 -31
  66. maleo_identity/models/transfers/general/organization_registration_code.py +0 -19
  67. maleo_identity/models/transfers/general/organization_role.py +0 -20
  68. maleo_identity/models/transfers/general/user.py +0 -28
  69. maleo_identity/models/transfers/general/user_organization.py +0 -18
  70. maleo_identity/models/transfers/general/user_organization_role.py +0 -19
  71. maleo_identity/models/transfers/general/user_profile.py +0 -32
  72. maleo_identity/models/transfers/general/user_system_role.py +0 -17
  73. maleo_identity/models/transfers/parameters/__init__.py +0 -9
  74. maleo_identity/models/transfers/parameters/client/__init__.py +0 -17
  75. maleo_identity/models/transfers/parameters/client/organization.py +0 -77
  76. maleo_identity/models/transfers/parameters/client/organization_registration_code.py +0 -24
  77. maleo_identity/models/transfers/parameters/client/organization_role.py +0 -33
  78. maleo_identity/models/transfers/parameters/client/user.py +0 -34
  79. maleo_identity/models/transfers/parameters/client/user_organization.py +0 -45
  80. maleo_identity/models/transfers/parameters/client/user_organization_role.py +0 -36
  81. maleo_identity/models/transfers/parameters/client/user_profile.py +0 -23
  82. maleo_identity/models/transfers/parameters/client/user_system_role.py +0 -33
  83. maleo_identity/models/transfers/parameters/general/__init__.py +0 -17
  84. maleo_identity/models/transfers/parameters/general/organization.py +0 -35
  85. maleo_identity/models/transfers/parameters/general/organization_registration_code.py +0 -33
  86. maleo_identity/models/transfers/parameters/general/organization_role.py +0 -17
  87. maleo_identity/models/transfers/parameters/general/user.py +0 -77
  88. maleo_identity/models/transfers/parameters/general/user_organization.py +0 -31
  89. maleo_identity/models/transfers/parameters/general/user_organization_role.py +0 -18
  90. maleo_identity/models/transfers/parameters/general/user_profile.py +0 -55
  91. maleo_identity/models/transfers/parameters/general/user_system_role.py +0 -29
  92. maleo_identity/models/transfers/parameters/service/__init__.py +0 -17
  93. maleo_identity/models/transfers/parameters/service/organization.py +0 -66
  94. maleo_identity/models/transfers/parameters/service/organization_registration_code.py +0 -19
  95. maleo_identity/models/transfers/parameters/service/organization_role.py +0 -26
  96. maleo_identity/models/transfers/parameters/service/user.py +0 -34
  97. maleo_identity/models/transfers/parameters/service/user_organization.py +0 -31
  98. maleo_identity/models/transfers/parameters/service/user_organization_role.py +0 -28
  99. maleo_identity/models/transfers/parameters/service/user_profile.py +0 -23
  100. maleo_identity/models/transfers/parameters/service/user_system_role.py +0 -26
  101. maleo_identity/models/transfers/results/__init__.py +0 -5
  102. maleo_identity/models/transfers/results/client/__init__.py +0 -17
  103. maleo_identity/models/transfers/results/client/organization.py +0 -21
  104. maleo_identity/models/transfers/results/client/organization_registration_code.py +0 -15
  105. maleo_identity/models/transfers/results/client/organization_role.py +0 -15
  106. maleo_identity/models/transfers/results/client/user.py +0 -24
  107. maleo_identity/models/transfers/results/client/user_organization.py +0 -15
  108. maleo_identity/models/transfers/results/client/user_organization_role.py +0 -15
  109. maleo_identity/models/transfers/results/client/user_profile.py +0 -15
  110. maleo_identity/models/transfers/results/client/user_system_role.py +0 -15
  111. maleo_identity/models/transfers/results/service/__init__.py +0 -0
  112. maleo_identity/models/transfers/results/service/organization.py +0 -21
  113. maleo_identity/models/transfers/results/service/organization_registration_code.py +0 -15
  114. maleo_identity/models/transfers/results/service/organization_role.py +0 -15
  115. maleo_identity/models/transfers/results/service/user.py +0 -24
  116. maleo_identity/models/transfers/results/service/user_organization.py +0 -15
  117. maleo_identity/models/transfers/results/service/user_organization_role.py +0 -15
  118. maleo_identity/models/transfers/results/service/user_profile.py +0 -15
  119. maleo_identity/models/transfers/results/service/user_system_role.py +0 -15
  120. maleo_identity/types/__init__.py +0 -5
  121. maleo_identity/types/results/__init__.py +0 -5
  122. maleo_identity/types/results/client/__init__.py +0 -17
  123. maleo_identity/types/results/client/organization.py +0 -30
  124. maleo_identity/types/results/client/organization_registration_code.py +0 -20
  125. maleo_identity/types/results/client/organization_role.py +0 -14
  126. maleo_identity/types/results/client/user.py +0 -29
  127. maleo_identity/types/results/client/user_organization.py +0 -19
  128. maleo_identity/types/results/client/user_organization_role.py +0 -14
  129. maleo_identity/types/results/client/user_profile.py +0 -19
  130. maleo_identity/types/results/client/user_system_role.py +0 -19
  131. maleo_identity/types/results/service/__init__.py +0 -0
  132. maleo_identity/types/results/service/organization.py +0 -32
  133. maleo_identity/types/results/service/organization_registration_code.py +0 -21
  134. maleo_identity/types/results/service/organization_role.py +0 -15
  135. maleo_identity/types/results/service/user.py +0 -30
  136. maleo_identity/types/results/service/user_organization.py +0 -20
  137. maleo_identity/types/results/service/user_organization_role.py +0 -15
  138. maleo_identity/types/results/service/user_profile.py +0 -20
  139. maleo_identity/types/results/service/user_system_role.py +0 -20
  140. maleo_identity-0.0.73.dist-info/RECORD +0 -140
  141. maleo_identity-0.0.73.dist-info/top_level.txt +0 -1
  142. {maleo_identity-0.0.73.dist-info → maleo_identity-0.0.76.dist-info}/WHEEL +0 -0
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.client.service import BaseClientServiceResultsTransfers
4
- from maleo_identity.models.transfers.general.organization_role import OrganizationRoleTransfers
5
-
6
- class MaleoIdentityOrganizationRoleClientResultsTransfers:
7
- class Fail(BaseClientServiceResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseClientServiceResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseClientServiceResultsTransfers.SingleData):
12
- data:OrganizationRoleTransfers = Field(..., description="Single organization role data")
13
-
14
- class MultipleData(BaseClientServiceResultsTransfers.PaginatedMultipleData):
15
- data:list[OrganizationRoleTransfers] = Field(..., description="Multiple organization roles data")
@@ -1,24 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from typing import Optional
4
- from maleo_foundation.models.transfers.results.client import BaseClientServiceResultsTransfers
5
- from maleo_identity.models.schemas.user import MaleoIdentityUserSchemas
6
- from maleo_identity.models.transfers.general.user import UserTransfers, PasswordTransfers
7
-
8
- class MaleoIdentityUserClientResultsTransfers:
9
- class Fail(BaseClientServiceResultsTransfers.Fail): pass
10
-
11
- class NoData(BaseClientServiceResultsTransfers.NoData): pass
12
-
13
- class SingleData(BaseClientServiceResultsTransfers.SingleData):
14
- data:UserTransfers = Field(..., description="Single user data")
15
-
16
- class MultipleData(BaseClientServiceResultsTransfers.PaginatedMultipleData):
17
- data:list[UserTransfers] = Field(..., description="Multiple users data")
18
-
19
- class SinglePassword(BaseClientServiceResultsTransfers.SingleData):
20
- data:PasswordTransfers = Field(..., description="Single user password")
21
-
22
- class SingleRegisterData(BaseClientServiceResultsTransfers.SingleData):
23
- data:UserTransfers = Field(..., description="Single user data")
24
- metadata:Optional[MaleoIdentityUserSchemas.RegisterResultMetadata] = Field(None, description="Optional metadata")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.client.service import BaseClientServiceResultsTransfers
4
- from maleo_identity.models.transfers.general.user_organization import UserOrganizationTransfers
5
-
6
- class MaleoIdentityUserOrganizationClientResultsTransfers:
7
- class Fail(BaseClientServiceResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseClientServiceResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseClientServiceResultsTransfers.SingleData):
12
- data:UserOrganizationTransfers = Field(..., description="Single user organization data")
13
-
14
- class MultipleData(BaseClientServiceResultsTransfers.PaginatedMultipleData):
15
- data:list[UserOrganizationTransfers] = Field(..., description="Multiple user organizations data")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.client.service import BaseClientServiceResultsTransfers
4
- from maleo_identity.models.transfers.general.user_organization_role import UserOrganizationRoleTransfers
5
-
6
- class MaleoIdentityUserOrganizationRoleClientResultsTransfers:
7
- class Fail(BaseClientServiceResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseClientServiceResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseClientServiceResultsTransfers.SingleData):
12
- data:UserOrganizationRoleTransfers = Field(..., description="Single user organization role data")
13
-
14
- class MultipleData(BaseClientServiceResultsTransfers.PaginatedMultipleData):
15
- data:list[UserOrganizationRoleTransfers] = Field(..., description="Multiple user organization roles data")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.client.service import BaseClientServiceResultsTransfers
4
- from maleo_identity.models.transfers.general.user_profile import UserProfileTransfers
5
-
6
- class MaleoIdentityUserProfileClientResultsTransfers:
7
- class Fail(BaseClientServiceResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseClientServiceResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseClientServiceResultsTransfers.SingleData):
12
- data:UserProfileTransfers = Field(..., description="Single user profile data")
13
-
14
- class MultipleData(BaseClientServiceResultsTransfers.PaginatedMultipleData):
15
- data:list[UserProfileTransfers] = Field(..., description="Multiple user profiles data")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.client.service import BaseClientServiceResultsTransfers
4
- from maleo_identity.models.transfers.general.user_system_role import UserSystemRoleTransfers
5
-
6
- class MaleoIdentityUserSystemRoleClientResultsTransfers:
7
- class Fail(BaseClientServiceResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseClientServiceResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseClientServiceResultsTransfers.SingleData):
12
- data:UserSystemRoleTransfers = Field(..., description="Single user system role data")
13
-
14
- class MultipleData(BaseClientServiceResultsTransfers.PaginatedMultipleData):
15
- data:list[UserSystemRoleTransfers] = Field(..., description="Multiple user system roles data")
@@ -1,21 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
4
- from maleo_identity.models.transfers.general.organization import OrganizationTransfers, StructuredOrganizationTransfers
5
-
6
- class MaleoIdentityOrganizationServiceResultsTransfers:
7
- class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseServiceGeneralResultsTransfers.SingleData):
12
- data:OrganizationTransfers = Field(..., description="Single organization data")
13
-
14
- class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
15
- data:list[OrganizationTransfers] = Field(..., description="Multiple organizations data")
16
-
17
- class SingleStructured(BaseServiceGeneralResultsTransfers.SingleData):
18
- data:StructuredOrganizationTransfers = Field(..., description="Single structured organization data")
19
-
20
- class MultipleStructured(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
21
- data:list[StructuredOrganizationTransfers] = Field(..., description="Multiple structured organizations data")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
4
- from maleo_identity.models.transfers.general.organization_registration_code import OrganizationRegistrationCodeTransfers
5
-
6
- class MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers:
7
- class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseServiceGeneralResultsTransfers.SingleData):
12
- data:OrganizationRegistrationCodeTransfers = Field(..., description="Single organization registration code data")
13
-
14
- class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
15
- data:list[OrganizationRegistrationCodeTransfers] = Field(..., description="Multiple organization registration codes data")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
4
- from maleo_identity.models.transfers.general.organization_role import OrganizationRoleTransfers
5
-
6
- class MaleoIdentityOrganizationRoleServiceResultsTransfers:
7
- class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseServiceGeneralResultsTransfers.SingleData):
12
- data:OrganizationRoleTransfers = Field(..., description="Single organization role data")
13
-
14
- class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
15
- data:list[OrganizationRoleTransfers] = Field(..., description="Multiple organization roles data")
@@ -1,24 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from typing import Optional
4
- from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
5
- from maleo_identity.models.schemas.user import MaleoIdentityUserSchemas
6
- from maleo_identity.models.transfers.general.user import UserTransfers, PasswordTransfers
7
-
8
- class MaleoIdentityUserServiceResultsTransfers:
9
- class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
10
-
11
- class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
12
-
13
- class SingleData(BaseServiceGeneralResultsTransfers.SingleData):
14
- data:UserTransfers = Field(..., description="Single user data")
15
-
16
- class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
17
- data:list[UserTransfers] = Field(..., description="Single users data")
18
-
19
- class SinglePassword(BaseServiceGeneralResultsTransfers.SingleData):
20
- data:PasswordTransfers = Field(..., description="Single password data")
21
-
22
- class SingleRegisterData(BaseServiceGeneralResultsTransfers.SingleData):
23
- data:UserTransfers = Field(..., description="Single user data")
24
- metadata:Optional[MaleoIdentityUserSchemas.RegisterResultMetadata] = Field(None, description="Optional metadata")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
4
- from maleo_identity.models.transfers.general.user_organization import UserOrganizationTransfers
5
-
6
- class MaleoIdentityUserOrganizationServiceResultsTransfers:
7
- class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseServiceGeneralResultsTransfers.SingleData):
12
- data:UserOrganizationTransfers = Field(..., description="Single user organization data")
13
-
14
- class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
15
- data:list[UserOrganizationTransfers] = Field(..., description="Multiple user organizations data")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
4
- from maleo_identity.models.transfers.general.user_organization_role import UserOrganizationRoleTransfers
5
-
6
- class MaleoIdentityUserOrganizationRoleServiceResultsTransfers:
7
- class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseServiceGeneralResultsTransfers.SingleData):
12
- data:UserOrganizationRoleTransfers = Field(..., description="Single user organization role data")
13
-
14
- class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
15
- data:list[UserOrganizationRoleTransfers] = Field(..., description="Multiple user organization roles data")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
4
- from maleo_identity.models.transfers.general.user_profile import UserProfileTransfers
5
-
6
- class MaleoIdentityUserProfileServiceResultsTransfers:
7
- class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseServiceGeneralResultsTransfers.SingleData):
12
- data:UserProfileTransfers = Field(..., description="Single user profile data")
13
-
14
- class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
15
- data:list[UserProfileTransfers] = Field(..., description="Multiple user profiles data")
@@ -1,15 +0,0 @@
1
- from __future__ import annotations
2
- from pydantic import Field
3
- from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
4
- from maleo_identity.models.transfers.general.user_system_role import UserSystemRoleTransfers
5
-
6
- class MaleoIdentityUserSystemRoleServiceResultsTransfers:
7
- class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
8
-
9
- class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
10
-
11
- class SingleData(BaseServiceGeneralResultsTransfers.SingleData):
12
- data:UserSystemRoleTransfers = Field(..., description="Single user system role data")
13
-
14
- class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
15
- data:list[UserSystemRoleTransfers] = Field(..., description="Multiple user system roles data")
@@ -1,5 +0,0 @@
1
- from __future__ import annotations
2
- from .results import MaleoIdentityResultsTypes
3
-
4
- class MaleoIdentityTypes:
5
- Results = MaleoIdentityResultsTypes
@@ -1,5 +0,0 @@
1
- from __future__ import annotations
2
- from .client import MaleoIdentityClientResultsTypes
3
-
4
- class MaleoIdentityResultsTypes:
5
- Client = MaleoIdentityClientResultsTypes
@@ -1,17 +0,0 @@
1
- from __future__ import annotations
2
- from .organization_role import MaleoIdentityOrganizationRoleClientResultsTypes
3
- from .organization import MaleoIdentityOrganizationClientResultsTypes
4
- from .user_organization_role import MaleoIdentityUserOrganizationRoleClientResultsTypes
5
- from .user_organization import MaleoIdentityUserOrganizationClientResultsTypes
6
- from .user_profile import MaleoIdentityUserProfileClientResultsTypes
7
- from .user_system_role import MaleoIdentityUserSystemRoleClientResultsTypes
8
- from .user import MaleoIdentityUserClientResultsTypes
9
-
10
- class MaleoIdentityClientResultsTypes:
11
- OrganizationRole = MaleoIdentityOrganizationRoleClientResultsTypes
12
- Organization = MaleoIdentityOrganizationClientResultsTypes
13
- UserOrganizationRole = MaleoIdentityUserOrganizationRoleClientResultsTypes
14
- UserOrganization = MaleoIdentityUserOrganizationClientResultsTypes
15
- UserProfile = MaleoIdentityUserProfileClientResultsTypes
16
- UserSystemRole = MaleoIdentityUserSystemRoleClientResultsTypes
17
- User = MaleoIdentityUserClientResultsTypes
@@ -1,30 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.client.organization import MaleoIdentityOrganizationClientResultsTransfers
3
-
4
- class MaleoIdentityOrganizationClientResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityOrganizationClientResultsTransfers.MultipleData,
7
- MaleoIdentityOrganizationClientResultsTransfers.NoData,
8
- MaleoIdentityOrganizationClientResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityOrganizationClientResultsTransfers.SingleData,
13
- MaleoIdentityOrganizationClientResultsTransfers.Fail
14
- ]
15
-
16
- GetMultipleStructured = Union[
17
- MaleoIdentityOrganizationClientResultsTransfers.MultipleStructured,
18
- MaleoIdentityOrganizationClientResultsTransfers.NoData,
19
- MaleoIdentityOrganizationClientResultsTransfers.Fail
20
- ]
21
-
22
- GetSingleStructured = Union[
23
- MaleoIdentityOrganizationClientResultsTransfers.SingleStructured,
24
- MaleoIdentityOrganizationClientResultsTransfers.Fail
25
- ]
26
-
27
- CreateOrUpdate = Union[
28
- MaleoIdentityOrganizationClientResultsTransfers.SingleData,
29
- MaleoIdentityOrganizationClientResultsTransfers.Fail
30
- ]
@@ -1,20 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.client.organization_registration_code \
3
- import MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers
4
-
5
- class MaleoIdentityOrganizationRegistrationCodeClientResultsTypes:
6
- GetMultiple = Union[
7
- MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.MultipleData,
8
- MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.NoData,
9
- MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.Fail
10
- ]
11
-
12
- GetSingle = Union[
13
- MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.SingleData,
14
- MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.Fail
15
- ]
16
-
17
- Create = Union[
18
- MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.SingleData,
19
- MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.Fail
20
- ]
@@ -1,14 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.client.organization_role import MaleoIdentityOrganizationRoleClientResultsTransfers
3
-
4
- class MaleoIdentityOrganizationRoleClientResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityOrganizationRoleClientResultsTransfers.MultipleData,
7
- MaleoIdentityOrganizationRoleClientResultsTransfers.NoData,
8
- MaleoIdentityOrganizationRoleClientResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityOrganizationRoleClientResultsTransfers.SingleData,
13
- MaleoIdentityOrganizationRoleClientResultsTransfers.Fail
14
- ]
@@ -1,29 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.client.user import MaleoIdentityUserClientResultsTransfers
3
-
4
- class MaleoIdentityUserClientResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityUserClientResultsTransfers.MultipleData,
7
- MaleoIdentityUserClientResultsTransfers.NoData,
8
- MaleoIdentityUserClientResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityUserClientResultsTransfers.SingleData,
13
- MaleoIdentityUserClientResultsTransfers.Fail
14
- ]
15
-
16
- CreateOrUpdate = Union[
17
- MaleoIdentityUserClientResultsTransfers.SingleData,
18
- MaleoIdentityUserClientResultsTransfers.Fail
19
- ]
20
-
21
- GetSinglePassword = Union[
22
- MaleoIdentityUserClientResultsTransfers.SinglePassword,
23
- MaleoIdentityUserClientResultsTransfers.Fail
24
- ]
25
-
26
- Register = Union[
27
- MaleoIdentityUserClientResultsTransfers.SingleRegisterData,
28
- MaleoIdentityUserClientResultsTransfers.Fail
29
- ]
@@ -1,19 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.client.user_organization import MaleoIdentityUserOrganizationClientResultsTransfers
3
-
4
- class MaleoIdentityUserOrganizationClientResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityUserOrganizationClientResultsTransfers.MultipleData,
7
- MaleoIdentityUserOrganizationClientResultsTransfers.NoData,
8
- MaleoIdentityUserOrganizationClientResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityUserOrganizationClientResultsTransfers.SingleData,
13
- MaleoIdentityUserOrganizationClientResultsTransfers.Fail
14
- ]
15
-
16
- Assign = Union[
17
- MaleoIdentityUserOrganizationClientResultsTransfers.SingleData,
18
- MaleoIdentityUserOrganizationClientResultsTransfers.Fail
19
- ]
@@ -1,14 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.client.user_organization_role import MaleoIdentityUserOrganizationRoleClientResultsTransfers
3
-
4
- class MaleoIdentityUserOrganizationRoleClientResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityUserOrganizationRoleClientResultsTransfers.MultipleData,
7
- MaleoIdentityUserOrganizationRoleClientResultsTransfers.NoData,
8
- MaleoIdentityUserOrganizationRoleClientResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityUserOrganizationRoleClientResultsTransfers.SingleData,
13
- MaleoIdentityUserOrganizationRoleClientResultsTransfers.Fail
14
- ]
@@ -1,19 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.client.user_profile import MaleoIdentityUserProfileClientResultsTransfers
3
-
4
- class MaleoIdentityUserProfileClientResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityUserProfileClientResultsTransfers.MultipleData,
7
- MaleoIdentityUserProfileClientResultsTransfers.NoData,
8
- MaleoIdentityUserProfileClientResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityUserProfileClientResultsTransfers.SingleData,
13
- MaleoIdentityUserProfileClientResultsTransfers.Fail
14
- ]
15
-
16
- CreateOrUpdate = Union[
17
- MaleoIdentityUserProfileClientResultsTransfers.SingleData,
18
- MaleoIdentityUserProfileClientResultsTransfers.Fail
19
- ]
@@ -1,19 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.client.user_system_role import MaleoIdentityUserSystemRoleClientResultsTransfers
3
-
4
- class MaleoIdentityUserSystemRoleClientResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityUserSystemRoleClientResultsTransfers.MultipleData,
7
- MaleoIdentityUserSystemRoleClientResultsTransfers.NoData,
8
- MaleoIdentityUserSystemRoleClientResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityUserSystemRoleClientResultsTransfers.SingleData,
13
- MaleoIdentityUserSystemRoleClientResultsTransfers.Fail
14
- ]
15
-
16
- Assign = Union[
17
- MaleoIdentityUserSystemRoleClientResultsTransfers.SingleData,
18
- MaleoIdentityUserSystemRoleClientResultsTransfers.Fail
19
- ]
File without changes
@@ -1,32 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.service.organization import MaleoIdentityOrganizationServiceResultsTransfers
3
-
4
- class MaleoIdentityOrganizationServiceResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityOrganizationServiceResultsTransfers.MultipleData,
7
- MaleoIdentityOrganizationServiceResultsTransfers.NoData,
8
- MaleoIdentityOrganizationServiceResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityOrganizationServiceResultsTransfers.SingleData,
13
- MaleoIdentityOrganizationServiceResultsTransfers.NoData,
14
- MaleoIdentityOrganizationServiceResultsTransfers.Fail
15
- ]
16
-
17
- GetMultipleStructured = Union[
18
- MaleoIdentityOrganizationServiceResultsTransfers.MultipleStructured,
19
- MaleoIdentityOrganizationServiceResultsTransfers.NoData,
20
- MaleoIdentityOrganizationServiceResultsTransfers.Fail
21
- ]
22
-
23
- GetSingleStructured = Union[
24
- MaleoIdentityOrganizationServiceResultsTransfers.SingleStructured,
25
- MaleoIdentityOrganizationServiceResultsTransfers.NoData,
26
- MaleoIdentityOrganizationServiceResultsTransfers.Fail
27
- ]
28
-
29
- CreateOrUpdate = Union[
30
- MaleoIdentityOrganizationServiceResultsTransfers.SingleData,
31
- MaleoIdentityOrganizationServiceResultsTransfers.Fail
32
- ]
@@ -1,21 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.service.organization_registration_code \
3
- import MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers
4
-
5
- class MaleoIdentityOrganizationRegistrationCodeServiceResultsTypes:
6
- GetMultiple = Union[
7
- MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.MultipleData,
8
- MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.NoData,
9
- MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.Fail
10
- ]
11
-
12
- GetSingle = Union[
13
- MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.SingleData,
14
- MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.NoData,
15
- MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.Fail
16
- ]
17
-
18
- CreateOrUpdate = Union[
19
- MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.SingleData,
20
- MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.Fail
21
- ]
@@ -1,15 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.service.organization_role import MaleoIdentityOrganizationRoleServiceResultsTransfers
3
-
4
- class MaleoIdentityOrganizationRoleServiceResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityOrganizationRoleServiceResultsTransfers.MultipleData,
7
- MaleoIdentityOrganizationRoleServiceResultsTransfers.NoData,
8
- MaleoIdentityOrganizationRoleServiceResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityOrganizationRoleServiceResultsTransfers.SingleData,
13
- MaleoIdentityOrganizationRoleServiceResultsTransfers.NoData,
14
- MaleoIdentityOrganizationRoleServiceResultsTransfers.Fail
15
- ]
@@ -1,30 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.service.user import MaleoIdentityUserServiceResultsTransfers
3
-
4
- class MaleoIdentityUserServiceResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityUserServiceResultsTransfers.MultipleData,
7
- MaleoIdentityUserServiceResultsTransfers.NoData,
8
- MaleoIdentityUserServiceResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityUserServiceResultsTransfers.SingleData,
13
- MaleoIdentityUserServiceResultsTransfers.NoData,
14
- MaleoIdentityUserServiceResultsTransfers.Fail
15
- ]
16
-
17
- CreateOrUpdate = Union[
18
- MaleoIdentityUserServiceResultsTransfers.SingleData,
19
- MaleoIdentityUserServiceResultsTransfers.Fail
20
- ]
21
-
22
- GetSinglePassword = Union[
23
- MaleoIdentityUserServiceResultsTransfers.SinglePassword,
24
- MaleoIdentityUserServiceResultsTransfers.Fail
25
- ]
26
-
27
- Register = Union[
28
- MaleoIdentityUserServiceResultsTransfers.SingleRegisterData,
29
- MaleoIdentityUserServiceResultsTransfers.Fail
30
- ]
@@ -1,20 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.service.user_organization import MaleoIdentityUserOrganizationServiceResultsTransfers
3
-
4
- class MaleoIdentityUserOrganizationServiceResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityUserOrganizationServiceResultsTransfers.MultipleData,
7
- MaleoIdentityUserOrganizationServiceResultsTransfers.NoData,
8
- MaleoIdentityUserOrganizationServiceResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityUserOrganizationServiceResultsTransfers.SingleData,
13
- MaleoIdentityUserOrganizationServiceResultsTransfers.NoData,
14
- MaleoIdentityUserOrganizationServiceResultsTransfers.Fail
15
- ]
16
-
17
- Assign = Union[
18
- MaleoIdentityUserOrganizationServiceResultsTransfers.SingleData,
19
- MaleoIdentityUserOrganizationServiceResultsTransfers.Fail
20
- ]
@@ -1,15 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.service.user_organization_role import MaleoIdentityUserOrganizationRoleServiceResultsTransfers
3
-
4
- class MaleoIdentityUserOrganizationRoleServiceResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityUserOrganizationRoleServiceResultsTransfers.MultipleData,
7
- MaleoIdentityUserOrganizationRoleServiceResultsTransfers.NoData,
8
- MaleoIdentityUserOrganizationRoleServiceResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityUserOrganizationRoleServiceResultsTransfers.SingleData,
13
- MaleoIdentityUserOrganizationRoleServiceResultsTransfers.NoData,
14
- MaleoIdentityUserOrganizationRoleServiceResultsTransfers.Fail
15
- ]
@@ -1,20 +0,0 @@
1
- from typing import Union
2
- from maleo_identity.models.transfers.results.service.user_profile import MaleoIdentityUserProfileServiceResultsTransfers
3
-
4
- class MaleoIdentityUserProfileServiceResultsTypes:
5
- GetMultiple = Union[
6
- MaleoIdentityUserProfileServiceResultsTransfers.MultipleData,
7
- MaleoIdentityUserProfileServiceResultsTransfers.NoData,
8
- MaleoIdentityUserProfileServiceResultsTransfers.Fail
9
- ]
10
-
11
- GetSingle = Union[
12
- MaleoIdentityUserProfileServiceResultsTransfers.SingleData,
13
- MaleoIdentityUserProfileServiceResultsTransfers.NoData,
14
- MaleoIdentityUserProfileServiceResultsTransfers.Fail
15
- ]
16
-
17
- CreateOrUpdate = Union[
18
- MaleoIdentityUserProfileServiceResultsTransfers.SingleData,
19
- MaleoIdentityUserProfileServiceResultsTransfers.Fail
20
- ]