maleo-identity 0.0.71__py3-none-any.whl → 0.0.73__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/models/transfers/results/__init__.py +1 -5
- maleo_identity/models/transfers/results/{general → service}/organization.py +1 -1
- maleo_identity/models/transfers/results/{general → service}/organization_role.py +1 -1
- maleo_identity/models/transfers/results/{general → service}/user.py +3 -3
- maleo_identity/models/transfers/results/{general → service}/user_organization.py +1 -1
- maleo_identity/models/transfers/results/{general → service}/user_organization_role.py +1 -1
- maleo_identity/models/transfers/results/{general → service}/user_profile.py +1 -1
- maleo_identity/models/transfers/results/{general → service}/user_system_role.py +1 -1
- maleo_identity/types/results/__init__.py +0 -4
- maleo_identity/types/results/client/organization.py +10 -10
- maleo_identity/types/results/client/organization_registration_code.py +6 -6
- maleo_identity/types/results/client/organization_role.py +4 -4
- maleo_identity/types/results/client/user.py +10 -10
- maleo_identity/types/results/client/user_organization.py +6 -6
- maleo_identity/types/results/client/user_organization_role.py +4 -4
- maleo_identity/types/results/client/user_profile.py +6 -6
- maleo_identity/types/results/client/user_system_role.py +6 -6
- maleo_identity/types/results/service/organization.py +32 -0
- maleo_identity/types/results/service/organization_registration_code.py +6 -6
- maleo_identity/types/results/service/organization_role.py +15 -0
- maleo_identity/types/results/service/user.py +30 -0
- maleo_identity/types/results/service/user_organization.py +20 -0
- maleo_identity/types/results/service/user_organization_role.py +15 -0
- maleo_identity/types/results/service/user_profile.py +20 -0
- maleo_identity/types/results/service/user_system_role.py +20 -0
- {maleo_identity-0.0.71.dist-info → maleo_identity-0.0.73.dist-info}/METADATA +1 -1
- {maleo_identity-0.0.71.dist-info → maleo_identity-0.0.73.dist-info}/RECORD +29 -47
- maleo_identity/models/transfers/results/general/__init__.py +0 -17
- maleo_identity/models/transfers/results/repository/__init__.py +0 -17
- maleo_identity/models/transfers/results/repository/organization.py +0 -21
- maleo_identity/models/transfers/results/repository/organization_role.py +0 -15
- maleo_identity/models/transfers/results/repository/user.py +0 -24
- maleo_identity/models/transfers/results/repository/user_organization.py +0 -15
- maleo_identity/models/transfers/results/repository/user_organization_role.py +0 -15
- maleo_identity/models/transfers/results/repository/user_profile.py +0 -15
- maleo_identity/models/transfers/results/repository/user_system_role.py +0 -15
- maleo_identity/types/results/general/__init__.py +0 -17
- maleo_identity/types/results/general/organization.py +0 -32
- maleo_identity/types/results/general/organization_role.py +0 -15
- maleo_identity/types/results/general/user.py +0 -30
- maleo_identity/types/results/general/user_organization.py +0 -20
- maleo_identity/types/results/general/user_organization_role.py +0 -15
- maleo_identity/types/results/general/user_profile.py +0 -20
- maleo_identity/types/results/general/user_system_role.py +0 -20
- maleo_identity/types/results/repository/__init__.py +0 -17
- maleo_identity/types/results/repository/organization.py +0 -32
- maleo_identity/types/results/repository/organization_role.py +0 -15
- maleo_identity/types/results/repository/user.py +0 -30
- maleo_identity/types/results/repository/user_organization.py +0 -20
- maleo_identity/types/results/repository/user_organization_role.py +0 -15
- maleo_identity/types/results/repository/user_profile.py +0 -20
- maleo_identity/types/results/repository/user_system_role.py +0 -20
- {maleo_identity-0.0.71.dist-info → maleo_identity-0.0.73.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.71.dist-info → maleo_identity-0.0.73.dist-info}/top_level.txt +0 -0
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
from .client import MaleoIdentityClientResultsTransfers
|
|
3
|
-
from .general import MaleoIdentityGeneralResultsTransfers
|
|
4
|
-
from .repository import MaleoIdentityRepositoryResultsTransfers
|
|
5
3
|
|
|
6
4
|
class MaleoIdentityResultsTransfers:
|
|
7
|
-
Client = MaleoIdentityClientResultsTransfers
|
|
8
|
-
General = MaleoIdentityGeneralResultsTransfers
|
|
9
|
-
Query = MaleoIdentityRepositoryResultsTransfers
|
|
5
|
+
Client = MaleoIdentityClientResultsTransfers
|
|
@@ -3,7 +3,7 @@ from pydantic import Field
|
|
|
3
3
|
from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
|
|
4
4
|
from maleo_identity.models.transfers.general.organization import OrganizationTransfers, StructuredOrganizationTransfers
|
|
5
5
|
|
|
6
|
-
class
|
|
6
|
+
class MaleoIdentityOrganizationServiceResultsTransfers:
|
|
7
7
|
class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
|
|
8
8
|
|
|
9
9
|
class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
|
|
@@ -3,7 +3,7 @@ from pydantic import Field
|
|
|
3
3
|
from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
|
|
4
4
|
from maleo_identity.models.transfers.general.organization_role import OrganizationRoleTransfers
|
|
5
5
|
|
|
6
|
-
class
|
|
6
|
+
class MaleoIdentityOrganizationRoleServiceResultsTransfers:
|
|
7
7
|
class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
|
|
8
8
|
|
|
9
9
|
class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
|
|
@@ -5,7 +5,7 @@ from maleo_foundation.models.transfers.results.service.general import BaseServic
|
|
|
5
5
|
from maleo_identity.models.schemas.user import MaleoIdentityUserSchemas
|
|
6
6
|
from maleo_identity.models.transfers.general.user import UserTransfers, PasswordTransfers
|
|
7
7
|
|
|
8
|
-
class
|
|
8
|
+
class MaleoIdentityUserServiceResultsTransfers:
|
|
9
9
|
class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
|
|
10
10
|
|
|
11
11
|
class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
|
|
@@ -14,10 +14,10 @@ class MaleoIdentityUserGeneralResultsTransfers:
|
|
|
14
14
|
data:UserTransfers = Field(..., description="Single user data")
|
|
15
15
|
|
|
16
16
|
class MultipleData(BaseServiceGeneralResultsTransfers.PaginatedMultipleData):
|
|
17
|
-
data:list[UserTransfers] = Field(..., description="
|
|
17
|
+
data:list[UserTransfers] = Field(..., description="Single users data")
|
|
18
18
|
|
|
19
19
|
class SinglePassword(BaseServiceGeneralResultsTransfers.SingleData):
|
|
20
|
-
data:PasswordTransfers = Field(..., description="Single
|
|
20
|
+
data:PasswordTransfers = Field(..., description="Single password data")
|
|
21
21
|
|
|
22
22
|
class SingleRegisterData(BaseServiceGeneralResultsTransfers.SingleData):
|
|
23
23
|
data:UserTransfers = Field(..., description="Single user data")
|
|
@@ -3,7 +3,7 @@ from pydantic import Field
|
|
|
3
3
|
from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
|
|
4
4
|
from maleo_identity.models.transfers.general.user_organization import UserOrganizationTransfers
|
|
5
5
|
|
|
6
|
-
class
|
|
6
|
+
class MaleoIdentityUserOrganizationServiceResultsTransfers:
|
|
7
7
|
class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
|
|
8
8
|
|
|
9
9
|
class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
|
|
@@ -3,7 +3,7 @@ from pydantic import Field
|
|
|
3
3
|
from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
|
|
4
4
|
from maleo_identity.models.transfers.general.user_organization_role import UserOrganizationRoleTransfers
|
|
5
5
|
|
|
6
|
-
class
|
|
6
|
+
class MaleoIdentityUserOrganizationRoleServiceResultsTransfers:
|
|
7
7
|
class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
|
|
8
8
|
|
|
9
9
|
class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
|
|
@@ -3,7 +3,7 @@ from pydantic import Field
|
|
|
3
3
|
from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
|
|
4
4
|
from maleo_identity.models.transfers.general.user_profile import UserProfileTransfers
|
|
5
5
|
|
|
6
|
-
class
|
|
6
|
+
class MaleoIdentityUserProfileServiceResultsTransfers:
|
|
7
7
|
class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
|
|
8
8
|
|
|
9
9
|
class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
|
|
@@ -3,7 +3,7 @@ from pydantic import Field
|
|
|
3
3
|
from maleo_foundation.models.transfers.results.service.general import BaseServiceGeneralResultsTransfers
|
|
4
4
|
from maleo_identity.models.transfers.general.user_system_role import UserSystemRoleTransfers
|
|
5
5
|
|
|
6
|
-
class
|
|
6
|
+
class MaleoIdentityUserSystemRoleServiceResultsTransfers:
|
|
7
7
|
class Fail(BaseServiceGeneralResultsTransfers.Fail): pass
|
|
8
8
|
|
|
9
9
|
class NoData(BaseServiceGeneralResultsTransfers.NoData): pass
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
|
-
from .general import MaleoIdentityGeneralResultsTypes
|
|
3
|
-
from .repository import MaleoIdentityRepositoryResultsTypes
|
|
4
2
|
from .client import MaleoIdentityClientResultsTypes
|
|
5
3
|
|
|
6
4
|
class MaleoIdentityResultsTypes:
|
|
7
|
-
General = MaleoIdentityGeneralResultsTypes
|
|
8
|
-
Query = MaleoIdentityRepositoryResultsTypes
|
|
9
5
|
Client = MaleoIdentityClientResultsTypes
|
|
@@ -3,28 +3,28 @@ from maleo_identity.models.transfers.results.client.organization import MaleoIde
|
|
|
3
3
|
|
|
4
4
|
class MaleoIdentityOrganizationClientResultsTypes:
|
|
5
5
|
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
6
|
+
MaleoIdentityOrganizationClientResultsTransfers.MultipleData,
|
|
7
7
|
MaleoIdentityOrganizationClientResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
8
|
+
MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
GetSingle = Union[
|
|
12
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
13
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
12
|
+
MaleoIdentityOrganizationClientResultsTransfers.SingleData,
|
|
13
|
+
MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
14
14
|
]
|
|
15
15
|
|
|
16
16
|
GetMultipleStructured = Union[
|
|
17
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
17
|
+
MaleoIdentityOrganizationClientResultsTransfers.MultipleStructured,
|
|
18
18
|
MaleoIdentityOrganizationClientResultsTransfers.NoData,
|
|
19
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
19
|
+
MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
20
20
|
]
|
|
21
21
|
|
|
22
22
|
GetSingleStructured = Union[
|
|
23
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
24
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
23
|
+
MaleoIdentityOrganizationClientResultsTransfers.SingleStructured,
|
|
24
|
+
MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
25
25
|
]
|
|
26
26
|
|
|
27
27
|
CreateOrUpdate = Union[
|
|
28
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
29
|
-
MaleoIdentityOrganizationClientResultsTransfers.
|
|
28
|
+
MaleoIdentityOrganizationClientResultsTransfers.SingleData,
|
|
29
|
+
MaleoIdentityOrganizationClientResultsTransfers.Fail
|
|
30
30
|
]
|
|
@@ -4,17 +4,17 @@ from maleo_identity.models.transfers.results.client.organization_registration_co
|
|
|
4
4
|
|
|
5
5
|
class MaleoIdentityOrganizationRegistrationCodeClientResultsTypes:
|
|
6
6
|
GetMultiple = Union[
|
|
7
|
-
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.
|
|
7
|
+
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.MultipleData,
|
|
8
8
|
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.NoData,
|
|
9
|
-
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.
|
|
9
|
+
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.Fail
|
|
10
10
|
]
|
|
11
11
|
|
|
12
12
|
GetSingle = Union[
|
|
13
|
-
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.
|
|
14
|
-
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.
|
|
13
|
+
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.SingleData,
|
|
14
|
+
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.Fail
|
|
15
15
|
]
|
|
16
16
|
|
|
17
17
|
Create = Union[
|
|
18
|
-
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.
|
|
19
|
-
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.
|
|
18
|
+
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.SingleData,
|
|
19
|
+
MaleoIdentityOrganizationRegistrationCodeClientResultsTransfers.Fail
|
|
20
20
|
]
|
|
@@ -3,12 +3,12 @@ from maleo_identity.models.transfers.results.client.organization_role import Mal
|
|
|
3
3
|
|
|
4
4
|
class MaleoIdentityOrganizationRoleClientResultsTypes:
|
|
5
5
|
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityOrganizationRoleClientResultsTransfers.
|
|
6
|
+
MaleoIdentityOrganizationRoleClientResultsTransfers.MultipleData,
|
|
7
7
|
MaleoIdentityOrganizationRoleClientResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityOrganizationRoleClientResultsTransfers.
|
|
8
|
+
MaleoIdentityOrganizationRoleClientResultsTransfers.Fail
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
GetSingle = Union[
|
|
12
|
-
MaleoIdentityOrganizationRoleClientResultsTransfers.
|
|
13
|
-
MaleoIdentityOrganizationRoleClientResultsTransfers.
|
|
12
|
+
MaleoIdentityOrganizationRoleClientResultsTransfers.SingleData,
|
|
13
|
+
MaleoIdentityOrganizationRoleClientResultsTransfers.Fail
|
|
14
14
|
]
|
|
@@ -3,27 +3,27 @@ from maleo_identity.models.transfers.results.client.user import MaleoIdentityUse
|
|
|
3
3
|
|
|
4
4
|
class MaleoIdentityUserClientResultsTypes:
|
|
5
5
|
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
6
|
+
MaleoIdentityUserClientResultsTransfers.MultipleData,
|
|
7
7
|
MaleoIdentityUserClientResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
8
|
+
MaleoIdentityUserClientResultsTransfers.Fail
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
13
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
12
|
+
MaleoIdentityUserClientResultsTransfers.SingleData,
|
|
13
|
+
MaleoIdentityUserClientResultsTransfers.Fail
|
|
14
14
|
]
|
|
15
15
|
|
|
16
16
|
CreateOrUpdate = Union[
|
|
17
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
18
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
17
|
+
MaleoIdentityUserClientResultsTransfers.SingleData,
|
|
18
|
+
MaleoIdentityUserClientResultsTransfers.Fail
|
|
19
19
|
]
|
|
20
20
|
|
|
21
21
|
GetSinglePassword = Union[
|
|
22
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
23
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
22
|
+
MaleoIdentityUserClientResultsTransfers.SinglePassword,
|
|
23
|
+
MaleoIdentityUserClientResultsTransfers.Fail
|
|
24
24
|
]
|
|
25
25
|
|
|
26
26
|
Register = Union[
|
|
27
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
28
|
-
MaleoIdentityUserClientResultsTransfers.
|
|
27
|
+
MaleoIdentityUserClientResultsTransfers.SingleRegisterData,
|
|
28
|
+
MaleoIdentityUserClientResultsTransfers.Fail
|
|
29
29
|
]
|
|
@@ -3,17 +3,17 @@ from maleo_identity.models.transfers.results.client.user_organization import Mal
|
|
|
3
3
|
|
|
4
4
|
class MaleoIdentityUserOrganizationClientResultsTypes:
|
|
5
5
|
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserOrganizationClientResultsTransfers.
|
|
6
|
+
MaleoIdentityUserOrganizationClientResultsTransfers.MultipleData,
|
|
7
7
|
MaleoIdentityUserOrganizationClientResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserOrganizationClientResultsTransfers.
|
|
8
|
+
MaleoIdentityUserOrganizationClientResultsTransfers.Fail
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserOrganizationClientResultsTransfers.
|
|
13
|
-
MaleoIdentityUserOrganizationClientResultsTransfers.
|
|
12
|
+
MaleoIdentityUserOrganizationClientResultsTransfers.SingleData,
|
|
13
|
+
MaleoIdentityUserOrganizationClientResultsTransfers.Fail
|
|
14
14
|
]
|
|
15
15
|
|
|
16
16
|
Assign = Union[
|
|
17
|
-
MaleoIdentityUserOrganizationClientResultsTransfers.
|
|
18
|
-
MaleoIdentityUserOrganizationClientResultsTransfers.
|
|
17
|
+
MaleoIdentityUserOrganizationClientResultsTransfers.SingleData,
|
|
18
|
+
MaleoIdentityUserOrganizationClientResultsTransfers.Fail
|
|
19
19
|
]
|
|
@@ -3,12 +3,12 @@ from maleo_identity.models.transfers.results.client.user_organization_role impor
|
|
|
3
3
|
|
|
4
4
|
class MaleoIdentityUserOrganizationRoleClientResultsTypes:
|
|
5
5
|
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserOrganizationRoleClientResultsTransfers.
|
|
6
|
+
MaleoIdentityUserOrganizationRoleClientResultsTransfers.MultipleData,
|
|
7
7
|
MaleoIdentityUserOrganizationRoleClientResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserOrganizationRoleClientResultsTransfers.
|
|
8
|
+
MaleoIdentityUserOrganizationRoleClientResultsTransfers.Fail
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserOrganizationRoleClientResultsTransfers.
|
|
13
|
-
MaleoIdentityUserOrganizationRoleClientResultsTransfers.
|
|
12
|
+
MaleoIdentityUserOrganizationRoleClientResultsTransfers.SingleData,
|
|
13
|
+
MaleoIdentityUserOrganizationRoleClientResultsTransfers.Fail
|
|
14
14
|
]
|
|
@@ -3,17 +3,17 @@ from maleo_identity.models.transfers.results.client.user_profile import MaleoIde
|
|
|
3
3
|
|
|
4
4
|
class MaleoIdentityUserProfileClientResultsTypes:
|
|
5
5
|
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserProfileClientResultsTransfers.
|
|
6
|
+
MaleoIdentityUserProfileClientResultsTransfers.MultipleData,
|
|
7
7
|
MaleoIdentityUserProfileClientResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserProfileClientResultsTransfers.
|
|
8
|
+
MaleoIdentityUserProfileClientResultsTransfers.Fail
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserProfileClientResultsTransfers.
|
|
13
|
-
MaleoIdentityUserProfileClientResultsTransfers.
|
|
12
|
+
MaleoIdentityUserProfileClientResultsTransfers.SingleData,
|
|
13
|
+
MaleoIdentityUserProfileClientResultsTransfers.Fail
|
|
14
14
|
]
|
|
15
15
|
|
|
16
16
|
CreateOrUpdate = Union[
|
|
17
|
-
MaleoIdentityUserProfileClientResultsTransfers.
|
|
18
|
-
MaleoIdentityUserProfileClientResultsTransfers.
|
|
17
|
+
MaleoIdentityUserProfileClientResultsTransfers.SingleData,
|
|
18
|
+
MaleoIdentityUserProfileClientResultsTransfers.Fail
|
|
19
19
|
]
|
|
@@ -3,17 +3,17 @@ from maleo_identity.models.transfers.results.client.user_system_role import Male
|
|
|
3
3
|
|
|
4
4
|
class MaleoIdentityUserSystemRoleClientResultsTypes:
|
|
5
5
|
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserSystemRoleClientResultsTransfers.
|
|
6
|
+
MaleoIdentityUserSystemRoleClientResultsTransfers.MultipleData,
|
|
7
7
|
MaleoIdentityUserSystemRoleClientResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserSystemRoleClientResultsTransfers.
|
|
8
|
+
MaleoIdentityUserSystemRoleClientResultsTransfers.Fail
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserSystemRoleClientResultsTransfers.
|
|
13
|
-
MaleoIdentityUserSystemRoleClientResultsTransfers.
|
|
12
|
+
MaleoIdentityUserSystemRoleClientResultsTransfers.SingleData,
|
|
13
|
+
MaleoIdentityUserSystemRoleClientResultsTransfers.Fail
|
|
14
14
|
]
|
|
15
15
|
|
|
16
16
|
Assign = Union[
|
|
17
|
-
MaleoIdentityUserSystemRoleClientResultsTransfers.
|
|
18
|
-
MaleoIdentityUserSystemRoleClientResultsTransfers.
|
|
17
|
+
MaleoIdentityUserSystemRoleClientResultsTransfers.SingleData,
|
|
18
|
+
MaleoIdentityUserSystemRoleClientResultsTransfers.Fail
|
|
19
19
|
]
|
|
@@ -0,0 +1,32 @@
|
|
|
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
|
+
]
|
|
@@ -4,18 +4,18 @@ from maleo_identity.models.transfers.results.service.organization_registration_c
|
|
|
4
4
|
|
|
5
5
|
class MaleoIdentityOrganizationRegistrationCodeServiceResultsTypes:
|
|
6
6
|
GetMultiple = Union[
|
|
7
|
-
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.
|
|
7
|
+
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.MultipleData,
|
|
8
8
|
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.NoData,
|
|
9
|
-
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.
|
|
9
|
+
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.Fail
|
|
10
10
|
]
|
|
11
11
|
|
|
12
12
|
GetSingle = Union[
|
|
13
|
-
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.
|
|
13
|
+
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.SingleData,
|
|
14
14
|
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.NoData,
|
|
15
|
-
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.
|
|
15
|
+
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.Fail
|
|
16
16
|
]
|
|
17
17
|
|
|
18
18
|
CreateOrUpdate = Union[
|
|
19
|
-
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.
|
|
20
|
-
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.
|
|
19
|
+
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.SingleData,
|
|
20
|
+
MaleoIdentityOrganizationRegistrationCodeServiceResultsTransfers.Fail
|
|
21
21
|
]
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
from typing import Union
|
|
2
|
+
from maleo_identity.models.transfers.results.service.user_system_role import MaleoIdentityUserSystemRoleServiceResultsTransfers
|
|
3
|
+
|
|
4
|
+
class MaleoIdentityUserSystemRoleServiceResultsTypes:
|
|
5
|
+
GetMultiple = Union[
|
|
6
|
+
MaleoIdentityUserSystemRoleServiceResultsTransfers.MultipleData,
|
|
7
|
+
MaleoIdentityUserSystemRoleServiceResultsTransfers.NoData,
|
|
8
|
+
MaleoIdentityUserSystemRoleServiceResultsTransfers.Fail
|
|
9
|
+
]
|
|
10
|
+
|
|
11
|
+
GetSingle = Union[
|
|
12
|
+
MaleoIdentityUserSystemRoleServiceResultsTransfers.SingleData,
|
|
13
|
+
MaleoIdentityUserSystemRoleServiceResultsTransfers.NoData,
|
|
14
|
+
MaleoIdentityUserSystemRoleServiceResultsTransfers.Fail
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
Assign = Union[
|
|
18
|
+
MaleoIdentityUserSystemRoleServiceResultsTransfers.SingleData,
|
|
19
|
+
MaleoIdentityUserSystemRoleServiceResultsTransfers.Fail
|
|
20
|
+
]
|
|
@@ -95,7 +95,7 @@ maleo_identity/models/transfers/parameters/service/user_organization.py,sha256=q
|
|
|
95
95
|
maleo_identity/models/transfers/parameters/service/user_organization_role.py,sha256=-cmm95yLCCDnnNmpksX2oAq6uzIGVs0fI0yhNYDMLyQ,1356
|
|
96
96
|
maleo_identity/models/transfers/parameters/service/user_profile.py,sha256=qMuFJZCyLlpnB1g8kg1Y3GIhTZ3VfP1MuhTHkv699wE,1262
|
|
97
97
|
maleo_identity/models/transfers/parameters/service/user_system_role.py,sha256=CXno1c8B3Gz8-MUuFAy2njG0Y0TkAJSej2IVX_XA6TE,1292
|
|
98
|
-
maleo_identity/models/transfers/results/__init__.py,sha256=
|
|
98
|
+
maleo_identity/models/transfers/results/__init__.py,sha256=CPYBzQkPo_1sSL5OlkWydj_iJtrRceMPMVAfvVWFU6k,177
|
|
99
99
|
maleo_identity/models/transfers/results/client/__init__.py,sha256=Ue2IQSJqUtMgnot8zuidNdF23RB9_T6OhcV_9aDxz-o,1108
|
|
100
100
|
maleo_identity/models/transfers/results/client/organization.py,sha256=9GxzakLoDElH8LwzK7xzoNV1ZyoA_5Sn9sGpqgqHSyo,1193
|
|
101
101
|
maleo_identity/models/transfers/results/client/organization_registration_code.py,sha256=_tsus796vmMJ60PeQmHonmKLrBwFj_6Myrco0TT10_I,888
|
|
@@ -105,54 +105,36 @@ maleo_identity/models/transfers/results/client/user_organization.py,sha256=q7r4S
|
|
|
105
105
|
maleo_identity/models/transfers/results/client/user_organization_role.py,sha256=ksmnxtd_bSLP5EqxgaG19b3xREJwRMK0lh0TTVIgfOo,832
|
|
106
106
|
maleo_identity/models/transfers/results/client/user_profile.py,sha256=8nQp2zSDpNgU1NF-ijXv5SWHplZB1ieWi044iQT5l3U,766
|
|
107
107
|
maleo_identity/models/transfers/results/client/user_system_role.py,sha256=ZCN65hEI6dTRe4xPpZEFFUQXI9wz_MRc0CthHMhMfDM,790
|
|
108
|
-
maleo_identity/models/transfers/results/general/__init__.py,sha256=SfmgQuap4k8Wo-Y5Al-n58ibRspnjmt98xMNRFLvabs,1123
|
|
109
|
-
maleo_identity/models/transfers/results/general/organization.py,sha256=W5cN7wzXrzHvn3pNKD91HVxHLiOqTlUUfhneRUXhRyc,1202
|
|
110
|
-
maleo_identity/models/transfers/results/general/organization_role.py,sha256=FzXDOP-lo-YAOBwzU1Ke9xKP35I3kLOMKkuZOeRkPxs,808
|
|
111
|
-
maleo_identity/models/transfers/results/general/user.py,sha256=NWWsI_eAk1WP54stX01bcarIQvCEms0BOeoo6bJVoKs,1266
|
|
112
|
-
maleo_identity/models/transfers/results/general/user_organization.py,sha256=XFCGvUF2I0PpoUv3IteWKF4VR1NF-z080rfjXC4bDFg,808
|
|
113
|
-
maleo_identity/models/transfers/results/general/user_organization_role.py,sha256=RLBA7ZnpKmmkyZdtN87mx0oCwVCyx5BM_aEtS4WAm94,839
|
|
114
|
-
maleo_identity/models/transfers/results/general/user_profile.py,sha256=8kcBlsyaS-qG7iAGas1Z9jJWbCxSGEZWjh0opgBESpo,773
|
|
115
|
-
maleo_identity/models/transfers/results/general/user_system_role.py,sha256=RxwkIlkzFlJ-Tg-20QmFSL4BPwOCpR3JJFTYNi7w8oc,797
|
|
116
|
-
maleo_identity/models/transfers/results/repository/__init__.py,sha256=elgj_Zozrw-yps6PQDblhJkxqb7VLpEsCdpjm3w77Pc,1168
|
|
117
|
-
maleo_identity/models/transfers/results/repository/organization.py,sha256=2emf6-hUlxd17Uzikl9mGwxedBZxV3pdw1xwBFNdgKE,1229
|
|
118
|
-
maleo_identity/models/transfers/results/repository/organization_role.py,sha256=3OFMWpRYWx8lq6zNZmK3NMxz7xeOKPlIUYDVxtbkp2I,829
|
|
119
|
-
maleo_identity/models/transfers/results/repository/user.py,sha256=GH4I4f_wk-ZA427tj9BQWwyc3Ua4EvITdLNhnxX1nHw,1291
|
|
120
|
-
maleo_identity/models/transfers/results/repository/user_organization.py,sha256=Cee_kwXHP57ea7eWKleucj2zs2HAdU27c72aHINqO9g,829
|
|
121
|
-
maleo_identity/models/transfers/results/repository/user_organization_role.py,sha256=vcRdi_AkUGuf0uXQFgdgpa8c17cTQKahssb603Nbda4,860
|
|
122
|
-
maleo_identity/models/transfers/results/repository/user_profile.py,sha256=AJl3rXGQYjspOJg9CcBJd5deneM3hxRFTysKx16ddSY,794
|
|
123
|
-
maleo_identity/models/transfers/results/repository/user_system_role.py,sha256=a9tenhh9vt9jENHmJ8TfALo0ssexXwSJwCD7dkAs-X8,818
|
|
124
108
|
maleo_identity/models/transfers/results/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
|
+
maleo_identity/models/transfers/results/service/organization.py,sha256=lgHMqOpbFUhDrGkAhrS9uGWRbjqPj-xBQehQ8pGaRbk,1202
|
|
125
110
|
maleo_identity/models/transfers/results/service/organization_registration_code.py,sha256=7qhFKWBwl4aUpYZm9jG1iQTyxhCaauPu0Himm1P9QSA,895
|
|
111
|
+
maleo_identity/models/transfers/results/service/organization_role.py,sha256=T0gTxCHj6S9AytlmgwP2JTjgljNwi1BAAAsO5zRmwMo,808
|
|
112
|
+
maleo_identity/models/transfers/results/service/user.py,sha256=eeYNeSFtKtQXtbDFJteUPQvdB718I4wE5Pl7wYTZwlQ,1264
|
|
113
|
+
maleo_identity/models/transfers/results/service/user_organization.py,sha256=ZF752C3msnyDFfyKD2jkWFVNRI2vAXaJ9WrXLYUnNiE,808
|
|
114
|
+
maleo_identity/models/transfers/results/service/user_organization_role.py,sha256=HZzvrviEcvfjSk2w4OJArF8nx2aa9rBO-CMHxM4bAPY,839
|
|
115
|
+
maleo_identity/models/transfers/results/service/user_profile.py,sha256=GrgGThnr7nLmg6-sJrxIEL5rRaKh7dRe0nBMXDTpwvM,773
|
|
116
|
+
maleo_identity/models/transfers/results/service/user_system_role.py,sha256=NSjM0pG5pduk3-POrSXnV1n0Xyk55BqmGyRpojwfcr0,797
|
|
126
117
|
maleo_identity/types/__init__.py,sha256=U6YJOUefzuJjISnFXE6j7gzQvrZEAHboW3t8Ezgty94,148
|
|
127
|
-
maleo_identity/types/results/__init__.py,sha256=
|
|
118
|
+
maleo_identity/types/results/__init__.py,sha256=LZbJEa8o9BosqB8XlEKcukr9UVk5EwfdCafL2L2tZd0,165
|
|
128
119
|
maleo_identity/types/results/client/__init__.py,sha256=32xGwg-HBi1qJW2RxdTMbGuNKhVT7QAg6RMXE9rKWJ0,1048
|
|
129
|
-
maleo_identity/types/results/client/organization.py,sha256=
|
|
130
|
-
maleo_identity/types/results/client/organization_registration_code.py,sha256=
|
|
131
|
-
maleo_identity/types/results/client/organization_role.py,sha256=
|
|
132
|
-
maleo_identity/types/results/client/user.py,sha256=
|
|
133
|
-
maleo_identity/types/results/client/user_organization.py,sha256
|
|
134
|
-
maleo_identity/types/results/client/user_organization_role.py,sha256=
|
|
135
|
-
maleo_identity/types/results/client/user_profile.py,sha256=
|
|
136
|
-
maleo_identity/types/results/client/user_system_role.py,sha256=
|
|
137
|
-
maleo_identity/types/results/general/__init__.py,sha256=QLXcaBLdAAh9EYyIUIela7zUdwwxmpZ8HK34M1_kNlY,1063
|
|
138
|
-
maleo_identity/types/results/general/organization.py,sha256=GgyAMHs8Q7PTbP7rqdfisZG9L1ZtcJfKOkacnv--BWM,1308
|
|
139
|
-
maleo_identity/types/results/general/organization_role.py,sha256=fY5JyP2abFkawFdust7QgNxYY24hh8XDMPeNrkP0O8I,691
|
|
140
|
-
maleo_identity/types/results/general/user.py,sha256=sWTUHpO1B68NpOdeILh4m9-qbVU_gEl35EsQT7fSHIM,1041
|
|
141
|
-
maleo_identity/types/results/general/user_organization.py,sha256=v42srkpkv0DWaj6wEQzO2oIidd5vla2kCqn4TP05afI,857
|
|
142
|
-
maleo_identity/types/results/general/user_organization_role.py,sha256=Yzpf0-F0Llo8vJwQltcwa7zKIDx7KPCMpep4SdwsPBQ,728
|
|
143
|
-
maleo_identity/types/results/general/user_profile.py,sha256=Vqv6uJcS2VFq_U1TBFla7C2xPo3UxR0dQwrO6bZl3wA,810
|
|
144
|
-
maleo_identity/types/results/general/user_system_role.py,sha256=AXRYFacYHqPW489fUaJJq0MS0vK4tQnzA8WepHE5DwM,836
|
|
145
|
-
maleo_identity/types/results/repository/__init__.py,sha256=O07YHDOFogNx_zm5giNyhqrBTEQRga27yEPJJCsl7uI,1108
|
|
146
|
-
maleo_identity/types/results/repository/organization.py,sha256=TDH5jJj4UD3Z08ywXqFYmN5j9dthziRHKw0C1FZx1nM,1359
|
|
147
|
-
maleo_identity/types/results/repository/organization_role.py,sha256=mj6lPGGUKibiGv0rYfmK0UMwCxLKB8ggDUL746gccBQ,718
|
|
148
|
-
maleo_identity/types/results/repository/user.py,sha256=Ibe5Bw7m-Y51h13UcNEqGZbhObqohOy9T2cepSaP8uQ,1086
|
|
149
|
-
maleo_identity/types/results/repository/user_organization.py,sha256=EFzYD28CCmQtDsNAlI4SXsSfTkJM3NELcOSY6iaQAYY,890
|
|
150
|
-
maleo_identity/types/results/repository/user_organization_role.py,sha256=7SVvBMnrDnv9EFIceQmKJFisgjHqy7uN3ISyZy-QEOY,755
|
|
151
|
-
maleo_identity/types/results/repository/user_profile.py,sha256=oyfExKaH6f5vyRdpNLOHQ9SJ5ILDfh2lQ_9m7QmsP3I,843
|
|
152
|
-
maleo_identity/types/results/repository/user_system_role.py,sha256=6Qd9fetNARZVUiHR7BSKEZlRiHqG_XvvtApNv_OdaGE,869
|
|
120
|
+
maleo_identity/types/results/client/organization.py,sha256=9G8ix1sZJWqHgT3FHTjK0MbgZmGMeDkcF_zmrXTGX2k,1163
|
|
121
|
+
maleo_identity/types/results/client/organization_registration_code.py,sha256=GKms4MmjwpeJyanf4OwjyfW6KgMEFVBnfTvCI1LFMS0,905
|
|
122
|
+
maleo_identity/types/results/client/organization_role.py,sha256=Z3bQaOyqOxtZtHNNlikVVadbwIcuosSKwy0R1BdrQf4,614
|
|
123
|
+
maleo_identity/types/results/client/user.py,sha256=yYqArDqsyFQ-XpT2GEO_c9F4mMUGvXTjxnrYmSs6qoQ,970
|
|
124
|
+
maleo_identity/types/results/client/user_organization.py,sha256=-OyR4XNJqCrjCRDhOPk-D8QNIM2zXcpkOQXDfLOnXvo,778
|
|
125
|
+
maleo_identity/types/results/client/user_organization_role.py,sha256=dXu_UEyXPPn3OmdqA3K45w_KlkqGn7NM2dHwB_nvJSU,647
|
|
126
|
+
maleo_identity/types/results/client/user_profile.py,sha256=rg2W3hRTySy5SfXDDqH0kCZuZ8-Tx8zWJzAZaObcb8o,736
|
|
127
|
+
maleo_identity/types/results/client/user_system_role.py,sha256=4XuSXCrSdb-VHDdFosdO-KdGFK8cr9T3KmshJ0yfzkI,759
|
|
153
128
|
maleo_identity/types/results/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
|
-
maleo_identity/types/results/service/
|
|
155
|
-
maleo_identity
|
|
156
|
-
maleo_identity
|
|
157
|
-
maleo_identity
|
|
158
|
-
maleo_identity
|
|
129
|
+
maleo_identity/types/results/service/organization.py,sha256=SAK1Q3rsDHTGCyCxtKxU0Xm4c3Xy7xbTjMNi9arC-X4,1308
|
|
130
|
+
maleo_identity/types/results/service/organization_registration_code.py,sha256=pTq9l0lcP_zKqY_Z5uIlgwWZvRBDYUxBrx2fiKojHvs,1004
|
|
131
|
+
maleo_identity/types/results/service/organization_role.py,sha256=uvLAN9HWV0wYT-KdVWU7aK2RSavAHL9CQjFkqgNegfw,691
|
|
132
|
+
maleo_identity/types/results/service/user.py,sha256=pXSfN3V6rB3pFdIzh4g_GWFs9ZSd0YPc6TrIVXuMmU4,1041
|
|
133
|
+
maleo_identity/types/results/service/user_organization.py,sha256=hMVzRiKbv5yM8yrDLKvYC-IGwGdb0mysAJNIBnZNxTA,857
|
|
134
|
+
maleo_identity/types/results/service/user_organization_role.py,sha256=gtgwB8ZlQR-Zs477kCNmcZ9TKRG-QmZhqTALiIdxt5I,728
|
|
135
|
+
maleo_identity/types/results/service/user_profile.py,sha256=6pAAAdm6bCvqBq2DjlSKJ59TpKvJsRgNt1wdFwWyWLs,810
|
|
136
|
+
maleo_identity/types/results/service/user_system_role.py,sha256=Cu_NvzAjv0iS7mGxGbjyx3eNixb0TXVjmDPDlcUqZ3Q,836
|
|
137
|
+
maleo_identity-0.0.73.dist-info/METADATA,sha256=elfXdAZr4lR2-WI-acJVZS9htlgJJ2Zr6OfDzA75jBQ,868
|
|
138
|
+
maleo_identity-0.0.73.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
139
|
+
maleo_identity-0.0.73.dist-info/top_level.txt,sha256=mQENoRr7CBU3vx2PxHXywCHdfBm3AIzVx75IaEsArYE,15
|
|
140
|
+
maleo_identity-0.0.73.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from .organization_role import MaleoIdentityOrganizationRoleGeneralResultsTransfers
|
|
3
|
-
from .organization import MaleoIdentityOrganizationGeneralResultsTransfers
|
|
4
|
-
from .user_organization_role import MaleoIdentityUserOrganizationRoleGeneralResultsTransfers
|
|
5
|
-
from .user_organization import MaleoIdentityUserOrganizationGeneralResultsTransfers
|
|
6
|
-
from .user_profile import MaleoIdentityUserProfileGeneralResultsTransfers
|
|
7
|
-
from .user_system_role import MaleoIdentityUserSystemRoleGeneralResultsTransfers
|
|
8
|
-
from .user import MaleoIdentityUserGeneralResultsTransfers
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityGeneralResultsTransfers:
|
|
11
|
-
OrganizationRole = MaleoIdentityOrganizationRoleGeneralResultsTransfers
|
|
12
|
-
Organization = MaleoIdentityOrganizationGeneralResultsTransfers
|
|
13
|
-
UserOrganizationRole = MaleoIdentityUserOrganizationRoleGeneralResultsTransfers
|
|
14
|
-
UserOrganization = MaleoIdentityUserOrganizationGeneralResultsTransfers
|
|
15
|
-
UserProfile = MaleoIdentityUserProfileGeneralResultsTransfers
|
|
16
|
-
UserSystemRole = MaleoIdentityUserSystemRoleGeneralResultsTransfers
|
|
17
|
-
User = MaleoIdentityUserGeneralResultsTransfers
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from .organization_role import MaleoIdentityOrganizationRoleRepositoryResultsTransfers
|
|
3
|
-
from .organization import MaleoIdentityOrganizationRepositoryResultsTransfers
|
|
4
|
-
from .user_organization_role import MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers
|
|
5
|
-
from .user_organization import MaleoIdentityUserOrganizationRepositoryResultsTransfers
|
|
6
|
-
from .user_profile import MaleoIdentityUserProfileRepositoryResultsTransfers
|
|
7
|
-
from .user_system_role import MaleoIdentityUserSystemRoleRepositoryResultsTransfers
|
|
8
|
-
from .user import MaleoIdentityUserRepositoryResultsTransfers
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityRepositoryResultsTransfers:
|
|
11
|
-
OrganizationRole = MaleoIdentityOrganizationRoleRepositoryResultsTransfers
|
|
12
|
-
Organization = MaleoIdentityOrganizationRepositoryResultsTransfers
|
|
13
|
-
UserOrganizationRole = MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers
|
|
14
|
-
UserOrganization = MaleoIdentityUserOrganizationRepositoryResultsTransfers
|
|
15
|
-
UserProfile = MaleoIdentityUserProfileRepositoryResultsTransfers
|
|
16
|
-
UserSystemRole = MaleoIdentityUserSystemRoleRepositoryResultsTransfers
|
|
17
|
-
User = MaleoIdentityUserRepositoryResultsTransfers
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from pydantic import Field
|
|
3
|
-
from maleo_foundation.models.transfers.results.service.repository import BaseServiceRepositoryResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.organization import OrganizationTransfers, StructuredOrganizationTransfers
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityOrganizationRepositoryResultsTransfers:
|
|
7
|
-
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
8
|
-
|
|
9
|
-
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
10
|
-
|
|
11
|
-
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
12
|
-
data:OrganizationTransfers = Field(..., description="Single organization data")
|
|
13
|
-
|
|
14
|
-
class MultipleData(BaseServiceRepositoryResultsTransfers.PaginatedMultipleData):
|
|
15
|
-
data:list[OrganizationTransfers] = Field(..., description="Multiple organizations data")
|
|
16
|
-
|
|
17
|
-
class SingleStructured(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
18
|
-
data:StructuredOrganizationTransfers = Field(..., description="Single structured organization data")
|
|
19
|
-
|
|
20
|
-
class MultipleStructured(BaseServiceRepositoryResultsTransfers.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.repository import BaseServiceRepositoryResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.organization_role import OrganizationRoleTransfers
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityOrganizationRoleRepositoryResultsTransfers:
|
|
7
|
-
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
8
|
-
|
|
9
|
-
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
10
|
-
|
|
11
|
-
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
12
|
-
data:OrganizationRoleTransfers = Field(..., description="Single organization role data")
|
|
13
|
-
|
|
14
|
-
class MultipleData(BaseServiceRepositoryResultsTransfers.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.repository import BaseServiceRepositoryResultsTransfers
|
|
5
|
-
from maleo_identity.models.schemas.user import MaleoIdentityUserSchemas
|
|
6
|
-
from maleo_identity.models.transfers.general.user import UserTransfers, PasswordTransfers
|
|
7
|
-
|
|
8
|
-
class MaleoIdentityUserRepositoryResultsTransfers:
|
|
9
|
-
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
10
|
-
|
|
11
|
-
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
12
|
-
|
|
13
|
-
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
14
|
-
data:UserTransfers = Field(..., description="Single user data")
|
|
15
|
-
|
|
16
|
-
class MultipleData(BaseServiceRepositoryResultsTransfers.PaginatedMultipleData):
|
|
17
|
-
data:list[UserTransfers] = Field(..., description="Single users data")
|
|
18
|
-
|
|
19
|
-
class SinglePassword(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
20
|
-
data:PasswordTransfers = Field(..., description="Single password data")
|
|
21
|
-
|
|
22
|
-
class SingleRegisterData(BaseServiceRepositoryResultsTransfers.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.repository import BaseServiceRepositoryResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.user_organization import UserOrganizationTransfers
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityUserOrganizationRepositoryResultsTransfers:
|
|
7
|
-
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
8
|
-
|
|
9
|
-
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
10
|
-
|
|
11
|
-
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
12
|
-
data:UserOrganizationTransfers = Field(..., description="Single user organization data")
|
|
13
|
-
|
|
14
|
-
class MultipleData(BaseServiceRepositoryResultsTransfers.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.repository import BaseServiceRepositoryResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.user_organization_role import UserOrganizationRoleTransfers
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers:
|
|
7
|
-
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
8
|
-
|
|
9
|
-
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
10
|
-
|
|
11
|
-
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
12
|
-
data:UserOrganizationRoleTransfers = Field(..., description="Single user organization role data")
|
|
13
|
-
|
|
14
|
-
class MultipleData(BaseServiceRepositoryResultsTransfers.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.repository import BaseServiceRepositoryResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.user_profile import UserProfileTransfers
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityUserProfileRepositoryResultsTransfers:
|
|
7
|
-
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
8
|
-
|
|
9
|
-
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
10
|
-
|
|
11
|
-
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
12
|
-
data:UserProfileTransfers = Field(..., description="Single user profile data")
|
|
13
|
-
|
|
14
|
-
class MultipleData(BaseServiceRepositoryResultsTransfers.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.repository import BaseServiceRepositoryResultsTransfers
|
|
4
|
-
from maleo_identity.models.transfers.general.user_system_role import UserSystemRoleTransfers
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityUserSystemRoleRepositoryResultsTransfers:
|
|
7
|
-
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
8
|
-
|
|
9
|
-
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
10
|
-
|
|
11
|
-
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
12
|
-
data:UserSystemRoleTransfers = Field(..., description="Single user system role data")
|
|
13
|
-
|
|
14
|
-
class MultipleData(BaseServiceRepositoryResultsTransfers.PaginatedMultipleData):
|
|
15
|
-
data:list[UserSystemRoleTransfers] = Field(..., description="Multiple user system roles data")
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from .organization_role import MaleoIdentityOrganizationRoleGeneralResultsTypes
|
|
3
|
-
from .organization import MaleoIdentityOrganizationGeneralResultsTypes
|
|
4
|
-
from .user_organization_role import MaleoIdentityUserOrganizationRoleGeneralResultsTypes
|
|
5
|
-
from .user_organization import MaleoIdentityUserOrganizationGeneralResultsTypes
|
|
6
|
-
from .user_profile import MaleoIdentityUserProfileGeneralResultsTypes
|
|
7
|
-
from .user_system_role import MaleoIdentityUserSystemRoleGeneralResultsTypes
|
|
8
|
-
from .user import MaleoIdentityUserGeneralResultsTypes
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityGeneralResultsTypes:
|
|
11
|
-
OrganizationRole = MaleoIdentityOrganizationRoleGeneralResultsTypes
|
|
12
|
-
Organization = MaleoIdentityOrganizationGeneralResultsTypes
|
|
13
|
-
UserOrganizationRole = MaleoIdentityUserOrganizationRoleGeneralResultsTypes
|
|
14
|
-
UserOrganization = MaleoIdentityUserOrganizationGeneralResultsTypes
|
|
15
|
-
UserProfile = MaleoIdentityUserProfileGeneralResultsTypes
|
|
16
|
-
UserSystemRole = MaleoIdentityUserSystemRoleGeneralResultsTypes
|
|
17
|
-
User = MaleoIdentityUserGeneralResultsTypes
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.general.organization import MaleoIdentityOrganizationGeneralResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityOrganizationGeneralResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
GetMultipleStructured = Union[
|
|
18
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.NoData,
|
|
20
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.MultipleStructured
|
|
21
|
-
]
|
|
22
|
-
|
|
23
|
-
GetSingleStructured = Union[
|
|
24
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.Fail,
|
|
25
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.NoData,
|
|
26
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.SingleStructured
|
|
27
|
-
]
|
|
28
|
-
|
|
29
|
-
CreateOrUpdate = Union[
|
|
30
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.Fail,
|
|
31
|
-
MaleoIdentityOrganizationGeneralResultsTransfers.SingleData
|
|
32
|
-
]
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.general.organization_role import MaleoIdentityOrganizationRoleGeneralResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityOrganizationRoleGeneralResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityOrganizationRoleGeneralResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityOrganizationRoleGeneralResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityOrganizationRoleGeneralResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityOrganizationRoleGeneralResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityOrganizationRoleGeneralResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityOrganizationRoleGeneralResultsTransfers.SingleData
|
|
15
|
-
]
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.general.user import MaleoIdentityUserGeneralResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserGeneralResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserGeneralResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserGeneralResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserGeneralResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserGeneralResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserGeneralResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserGeneralResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
CreateOrUpdate = Union[
|
|
18
|
-
MaleoIdentityUserGeneralResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserGeneralResultsTransfers.SingleData
|
|
20
|
-
]
|
|
21
|
-
|
|
22
|
-
GetSinglePassword = Union[
|
|
23
|
-
MaleoIdentityUserGeneralResultsTransfers.Fail,
|
|
24
|
-
MaleoIdentityUserGeneralResultsTransfers.SinglePassword
|
|
25
|
-
]
|
|
26
|
-
|
|
27
|
-
Register = Union[
|
|
28
|
-
MaleoIdentityUserGeneralResultsTransfers.Fail,
|
|
29
|
-
MaleoIdentityUserGeneralResultsTransfers.SingleRegisterData
|
|
30
|
-
]
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.general.user_organization import MaleoIdentityUserOrganizationGeneralResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserOrganizationGeneralResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserOrganizationGeneralResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserOrganizationGeneralResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserOrganizationGeneralResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserOrganizationGeneralResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
Assign = Union[
|
|
18
|
-
MaleoIdentityUserOrganizationGeneralResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserOrganizationGeneralResultsTransfers.SingleData
|
|
20
|
-
]
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.general.user_organization_role import MaleoIdentityUserOrganizationRoleGeneralResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserOrganizationRoleGeneralResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserOrganizationRoleGeneralResultsTransfers.SingleData
|
|
15
|
-
]
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.general.user_profile import MaleoIdentityUserProfileGeneralResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserProfileGeneralResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserProfileGeneralResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserProfileGeneralResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserProfileGeneralResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserProfileGeneralResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserProfileGeneralResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserProfileGeneralResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
CreateOrUpdate = Union[
|
|
18
|
-
MaleoIdentityUserProfileGeneralResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserProfileGeneralResultsTransfers.SingleData
|
|
20
|
-
]
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.general.user_system_role import MaleoIdentityUserSystemRoleGeneralResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserSystemRoleGeneralResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserSystemRoleGeneralResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserSystemRoleGeneralResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserSystemRoleGeneralResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserSystemRoleGeneralResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
Assign = Union[
|
|
18
|
-
MaleoIdentityUserSystemRoleGeneralResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserSystemRoleGeneralResultsTransfers.SingleData
|
|
20
|
-
]
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from .organization_role import MaleoIdentityOrganizationRoleRepositoryResultsTypes
|
|
3
|
-
from .organization import MaleoIdentityOrganizationRepositoryResultsTypes
|
|
4
|
-
from .user_organization_role import MaleoIdentityUserOrganizationRoleRepositoryResultsTypes
|
|
5
|
-
from .user_organization import MaleoIdentityUserOrganizationRepositoryResultsTypes
|
|
6
|
-
from .user_profile import MaleoIdentityUserProfileRepositoryResultsTypes
|
|
7
|
-
from .user_system_role import MaleoIdentityUserSystemRoleRepositoryResultsTypes
|
|
8
|
-
from .user import MaleoIdentityUserRepositoryResultsTypes
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityRepositoryResultsTypes:
|
|
11
|
-
OrganizationRole = MaleoIdentityOrganizationRoleRepositoryResultsTypes
|
|
12
|
-
Organization = MaleoIdentityOrganizationRepositoryResultsTypes
|
|
13
|
-
UserOrganizationRole = MaleoIdentityUserOrganizationRoleRepositoryResultsTypes
|
|
14
|
-
UserOrganization = MaleoIdentityUserOrganizationRepositoryResultsTypes
|
|
15
|
-
UserProfile = MaleoIdentityUserProfileRepositoryResultsTypes
|
|
16
|
-
UserSystemRole = MaleoIdentityUserSystemRoleRepositoryResultsTypes
|
|
17
|
-
User = MaleoIdentityUserRepositoryResultsTypes
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.repository.organization import MaleoIdentityOrganizationRepositoryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityOrganizationRepositoryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
GetMultipleStructured = Union[
|
|
18
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.NoData,
|
|
20
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.MultipleStructured
|
|
21
|
-
]
|
|
22
|
-
|
|
23
|
-
GetSingleStructured = Union[
|
|
24
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.Fail,
|
|
25
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.NoData,
|
|
26
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.SingleStructured
|
|
27
|
-
]
|
|
28
|
-
|
|
29
|
-
CreateOrUpdate = Union[
|
|
30
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.Fail,
|
|
31
|
-
MaleoIdentityOrganizationRepositoryResultsTransfers.SingleData
|
|
32
|
-
]
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.repository.organization_role import MaleoIdentityOrganizationRoleRepositoryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityOrganizationRoleRepositoryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityOrganizationRoleRepositoryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityOrganizationRoleRepositoryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityOrganizationRoleRepositoryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityOrganizationRoleRepositoryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityOrganizationRoleRepositoryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityOrganizationRoleRepositoryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.repository.user import MaleoIdentityUserRepositoryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserRepositoryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserRepositoryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserRepositoryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserRepositoryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserRepositoryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserRepositoryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserRepositoryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
CreateOrUpdate = Union[
|
|
18
|
-
MaleoIdentityUserRepositoryResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserRepositoryResultsTransfers.SingleData
|
|
20
|
-
]
|
|
21
|
-
|
|
22
|
-
GetSinglePassword = Union[
|
|
23
|
-
MaleoIdentityUserRepositoryResultsTransfers.Fail,
|
|
24
|
-
MaleoIdentityUserRepositoryResultsTransfers.SinglePassword
|
|
25
|
-
]
|
|
26
|
-
|
|
27
|
-
Register = Union[
|
|
28
|
-
MaleoIdentityUserRepositoryResultsTransfers.Fail,
|
|
29
|
-
MaleoIdentityUserRepositoryResultsTransfers.SingleRegisterData
|
|
30
|
-
]
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.repository.user_organization import MaleoIdentityUserOrganizationRepositoryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserOrganizationRepositoryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserOrganizationRepositoryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserOrganizationRepositoryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserOrganizationRepositoryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserOrganizationRepositoryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserOrganizationRepositoryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserOrganizationRepositoryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
Assign = Union[
|
|
18
|
-
MaleoIdentityUserOrganizationRepositoryResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserOrganizationRepositoryResultsTransfers.SingleData
|
|
20
|
-
]
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.repository.user_organization_role import MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserOrganizationRoleRepositoryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.repository.user_profile import MaleoIdentityUserProfileRepositoryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserProfileRepositoryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserProfileRepositoryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserProfileRepositoryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserProfileRepositoryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserProfileRepositoryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserProfileRepositoryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserProfileRepositoryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
CreateOrUpdate = Union[
|
|
18
|
-
MaleoIdentityUserProfileRepositoryResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserProfileRepositoryResultsTransfers.SingleData
|
|
20
|
-
]
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.repository.user_system_role import MaleoIdentityUserSystemRoleRepositoryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserSystemRoleRepositoryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
Assign = Union[
|
|
18
|
-
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.SingleData
|
|
20
|
-
]
|
|
File without changes
|
|
File without changes
|