maleo-identity 0.0.30__py3-none-any.whl → 0.0.32__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/client/services/organization.py +266 -23
- maleo_identity/client/services/user.py +293 -27
- maleo_identity/models/transfers/results/__init__.py +2 -2
- maleo_identity/models/transfers/results/repository/__init__.py +17 -0
- maleo_identity/models/transfers/results/repository/organization.py +19 -0
- maleo_identity/models/transfers/results/repository/organization_role.py +19 -0
- maleo_identity/models/transfers/results/repository/user.py +28 -0
- maleo_identity/models/transfers/results/repository/user_organization.py +19 -0
- maleo_identity/models/transfers/results/repository/user_organization_role.py +19 -0
- maleo_identity/models/transfers/results/repository/user_profile.py +19 -0
- maleo_identity/models/transfers/results/repository/user_system_role.py +19 -0
- maleo_identity/types/results/__init__.py +2 -2
- maleo_identity/types/results/repository/__init__.py +17 -0
- maleo_identity/types/results/repository/organization.py +20 -0
- maleo_identity/types/results/repository/organization_role.py +15 -0
- maleo_identity/types/results/repository/user.py +25 -0
- maleo_identity/types/results/repository/user_organization.py +20 -0
- maleo_identity/types/results/repository/user_organization_role.py +15 -0
- maleo_identity/types/results/repository/user_profile.py +20 -0
- maleo_identity/types/results/repository/user_system_role.py +20 -0
- {maleo_identity-0.0.30.dist-info → maleo_identity-0.0.32.dist-info}/METADATA +3 -3
- {maleo_identity-0.0.30.dist-info → maleo_identity-0.0.32.dist-info}/RECORD +24 -24
- maleo_identity/models/transfers/results/query/__init__.py +0 -17
- maleo_identity/models/transfers/results/query/organization.py +0 -19
- maleo_identity/models/transfers/results/query/organization_role.py +0 -19
- maleo_identity/models/transfers/results/query/user.py +0 -28
- maleo_identity/models/transfers/results/query/user_organization.py +0 -19
- maleo_identity/models/transfers/results/query/user_organization_role.py +0 -19
- maleo_identity/models/transfers/results/query/user_profile.py +0 -19
- maleo_identity/models/transfers/results/query/user_system_role.py +0 -19
- maleo_identity/types/results/query/__init__.py +0 -17
- maleo_identity/types/results/query/organization.py +0 -20
- maleo_identity/types/results/query/organization_role.py +0 -15
- maleo_identity/types/results/query/user.py +0 -25
- maleo_identity/types/results/query/user_organization.py +0 -20
- maleo_identity/types/results/query/user_organization_role.py +0 -15
- maleo_identity/types/results/query/user_profile.py +0 -20
- maleo_identity/types/results/query/user_system_role.py +0 -20
- {maleo_identity-0.0.30.dist-info → maleo_identity-0.0.32.dist-info}/WHEEL +0 -0
- {maleo_identity-0.0.30.dist-info → maleo_identity-0.0.32.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from maleo_foundation.models.transfers.results.service.repository import BaseServiceRepositoryResultsTransfers
|
|
3
|
+
from maleo_identity.models.schemas.results.user_organization import MaleoIdentityUserOrganizationResultsSchemas
|
|
4
|
+
|
|
5
|
+
class MaleoIdentityUserOrganizationRepositoryResultsTransfers:
|
|
6
|
+
class Row(
|
|
7
|
+
MaleoIdentityUserOrganizationResultsSchemas.Base,
|
|
8
|
+
BaseServiceRepositoryResultsTransfers.Row
|
|
9
|
+
): pass
|
|
10
|
+
|
|
11
|
+
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
12
|
+
|
|
13
|
+
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
14
|
+
|
|
15
|
+
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
16
|
+
data:MaleoIdentityUserOrganizationRepositoryResultsTransfers.Row
|
|
17
|
+
|
|
18
|
+
class MultipleData(BaseServiceRepositoryResultsTransfers.PaginatedMultipleData):
|
|
19
|
+
data:list[MaleoIdentityUserOrganizationRepositoryResultsTransfers.Row]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from maleo_foundation.models.transfers.results.service.repository import BaseServiceRepositoryResultsTransfers
|
|
3
|
+
from maleo_identity.models.schemas.results.user_organization_role import MaleoIdentityUserOrganizationRoleResultsSchemas
|
|
4
|
+
|
|
5
|
+
class MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers:
|
|
6
|
+
class Row(
|
|
7
|
+
MaleoIdentityUserOrganizationRoleResultsSchemas.Base,
|
|
8
|
+
BaseServiceRepositoryResultsTransfers.Row
|
|
9
|
+
): pass
|
|
10
|
+
|
|
11
|
+
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
12
|
+
|
|
13
|
+
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
14
|
+
|
|
15
|
+
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
16
|
+
data:MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers.Row
|
|
17
|
+
|
|
18
|
+
class MultipleData(BaseServiceRepositoryResultsTransfers.PaginatedMultipleData):
|
|
19
|
+
data:list[MaleoIdentityUserOrganizationRoleRepositoryResultsTransfers.Row]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from maleo_foundation.models.transfers.results.service.repository import BaseServiceRepositoryResultsTransfers
|
|
3
|
+
from maleo_identity.models.schemas.results.user_profile import MaleoIdentityUserProfileResultsSchemas
|
|
4
|
+
|
|
5
|
+
class MaleoIdentityUserProfileRepositoryResultsTransfers:
|
|
6
|
+
class Row(
|
|
7
|
+
MaleoIdentityUserProfileResultsSchemas.Query,
|
|
8
|
+
BaseServiceRepositoryResultsTransfers.Row
|
|
9
|
+
): pass
|
|
10
|
+
|
|
11
|
+
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
12
|
+
|
|
13
|
+
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
14
|
+
|
|
15
|
+
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
16
|
+
data:MaleoIdentityUserProfileRepositoryResultsTransfers.Row
|
|
17
|
+
|
|
18
|
+
class MultipleData(BaseServiceRepositoryResultsTransfers.PaginatedMultipleData):
|
|
19
|
+
data:list[MaleoIdentityUserProfileRepositoryResultsTransfers.Row]
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from maleo_foundation.models.transfers.results.service.repository import BaseServiceRepositoryResultsTransfers
|
|
3
|
+
from maleo_identity.models.schemas.results.user_system_role import MaleoIdentityUserSystemRoleResultsSchemas
|
|
4
|
+
|
|
5
|
+
class MaleoIdentityUserSystemRoleRepositoryResultsTransfers:
|
|
6
|
+
class Row(
|
|
7
|
+
MaleoIdentityUserSystemRoleResultsSchemas.Base,
|
|
8
|
+
BaseServiceRepositoryResultsTransfers.Row
|
|
9
|
+
): pass
|
|
10
|
+
|
|
11
|
+
class Fail(BaseServiceRepositoryResultsTransfers.Fail): pass
|
|
12
|
+
|
|
13
|
+
class NoData(BaseServiceRepositoryResultsTransfers.NoData): pass
|
|
14
|
+
|
|
15
|
+
class SingleData(BaseServiceRepositoryResultsTransfers.SingleData):
|
|
16
|
+
data:MaleoIdentityUserSystemRoleRepositoryResultsTransfers.Row
|
|
17
|
+
|
|
18
|
+
class MultipleData(BaseServiceRepositoryResultsTransfers.PaginatedMultipleData):
|
|
19
|
+
data:list[MaleoIdentityUserSystemRoleRepositoryResultsTransfers.Row]
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
from .general import MaleoIdentityGeneralResultsTypes
|
|
3
|
-
from .
|
|
3
|
+
from .repository import MaleoIdentityRepositoryResultsTypes
|
|
4
4
|
from .client import MaleoIdentityClientResultsTypes
|
|
5
5
|
|
|
6
6
|
class MaleoIdentityResultsTypes:
|
|
7
7
|
General = MaleoIdentityGeneralResultsTypes
|
|
8
|
-
Query =
|
|
8
|
+
Query = MaleoIdentityRepositoryResultsTypes
|
|
9
9
|
Client = MaleoIdentityClientResultsTypes
|
|
@@ -0,0 +1,17 @@
|
|
|
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
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
CreateOrUpdate = Union[
|
|
18
|
+
MaleoIdentityOrganizationRepositoryResultsTransfers.Fail,
|
|
19
|
+
MaleoIdentityOrganizationRepositoryResultsTransfers.SingleData
|
|
20
|
+
]
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
Create = Union[
|
|
18
|
+
MaleoIdentityUserOrganizationRepositoryResultsTransfers.Fail,
|
|
19
|
+
MaleoIdentityUserOrganizationRepositoryResultsTransfers.SingleData
|
|
20
|
+
]
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
]
|
|
@@ -0,0 +1,20 @@
|
|
|
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
|
+
Create = Union[
|
|
18
|
+
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.Fail,
|
|
19
|
+
MaleoIdentityUserSystemRoleRepositoryResultsTransfers.SingleData
|
|
20
|
+
]
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: maleo-identity
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.32
|
|
4
4
|
Summary: MaleoIdentity service package
|
|
5
5
|
Author-email: Agra Bima Yuda <agra@nexmedis.com>
|
|
6
6
|
License: MIT
|
|
7
7
|
Requires-Python: >=3.7
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
|
-
Requires-Dist: maleo_foundation>=0.2.
|
|
10
|
-
Requires-Dist: maleo_metadata>=0.0.
|
|
9
|
+
Requires-Dist: maleo_foundation>=0.2.33
|
|
10
|
+
Requires-Dist: maleo_metadata>=0.0.88
|
|
11
11
|
|
|
12
12
|
# README #
|
|
13
13
|
|
|
@@ -7,8 +7,8 @@ maleo_identity/client/controllers/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JC
|
|
|
7
7
|
maleo_identity/client/controllers/http/organization.py,sha256=0Qo86KUTcHPOIolLxoOZ8u2y-JVmwdBO6mIZEkrerKI,13555
|
|
8
8
|
maleo_identity/client/controllers/http/user.py,sha256=MqUBDCqsIxHTxbPJQ8BszDqpzdWnhn1D-MzQK-ADUjU,14020
|
|
9
9
|
maleo_identity/client/services/__init__.py,sha256=3lEqVBcNG7_3gSXxlJyaFtrN8OJFux67RYRZCDEI5WU,548
|
|
10
|
-
maleo_identity/client/services/organization.py,sha256=
|
|
11
|
-
maleo_identity/client/services/user.py,sha256=
|
|
10
|
+
maleo_identity/client/services/organization.py,sha256=hRMkBa_RM_vjMnYxOsvzzNMRUuhnonB1ADAqY5PIPWU,39850
|
|
11
|
+
maleo_identity/client/services/user.py,sha256=Xpl4udX-58OdQJweMPZIF5k_oM52gYqgQL4tD2lTX4M,42523
|
|
12
12
|
maleo_identity/constants/__init__.py,sha256=EyuYkmm-m27VYwjrTjBKcB3iH78y48v2qDaie33WyiE,913
|
|
13
13
|
maleo_identity/constants/organization.py,sha256=M5STqi5WMtT6kfNbB4BnQ1gEdQvU-l9dc9MiJCKzO_o,484
|
|
14
14
|
maleo_identity/constants/organization_role.py,sha256=pUcxF2h5cH1j7JzObVKEp0l6Bz3Uoe7isZ-r5ere6Og,919
|
|
@@ -102,7 +102,7 @@ maleo_identity/models/transfers/parameters/service/user_organization.py,sha256=g
|
|
|
102
102
|
maleo_identity/models/transfers/parameters/service/user_organization_role.py,sha256=mssveqYQeq2nMTGwic2elnjdn27ERcP_H4x0oLKat7Q,1393
|
|
103
103
|
maleo_identity/models/transfers/parameters/service/user_profile.py,sha256=ndP9yiO8LO55mfmNTx5mo5q4OIDobXiudFJIrcSrI3Q,1229
|
|
104
104
|
maleo_identity/models/transfers/parameters/service/user_system_role.py,sha256=4r1_9CXtcnQFM-lsoHKq88cKGDuy95Apeu5tecvhz4k,1273
|
|
105
|
-
maleo_identity/models/transfers/results/__init__.py,sha256=
|
|
105
|
+
maleo_identity/models/transfers/results/__init__.py,sha256=NpWktmsR0qpiUIAlmY8jlriIazFW67_7RGitL7LnEfM,402
|
|
106
106
|
maleo_identity/models/transfers/results/client/__init__.py,sha256=Ue2IQSJqUtMgnot8zuidNdF23RB9_T6OhcV_9aDxz-o,1108
|
|
107
107
|
maleo_identity/models/transfers/results/client/organization.py,sha256=EZHdhx90fYEwGt_hYYU5GXw5hNssw33tj2A8WpDssRU,770
|
|
108
108
|
maleo_identity/models/transfers/results/client/organization_role.py,sha256=YqMLypnLVnMF7LYGhFfZHzd3HbGL0xqhoqi9lium-J0,801
|
|
@@ -119,16 +119,16 @@ maleo_identity/models/transfers/results/general/user_organization.py,sha256=XFCG
|
|
|
119
119
|
maleo_identity/models/transfers/results/general/user_organization_role.py,sha256=RLBA7ZnpKmmkyZdtN87mx0oCwVCyx5BM_aEtS4WAm94,839
|
|
120
120
|
maleo_identity/models/transfers/results/general/user_profile.py,sha256=8kcBlsyaS-qG7iAGas1Z9jJWbCxSGEZWjh0opgBESpo,773
|
|
121
121
|
maleo_identity/models/transfers/results/general/user_system_role.py,sha256=RxwkIlkzFlJ-Tg-20QmFSL4BPwOCpR3JJFTYNi7w8oc,797
|
|
122
|
-
maleo_identity/models/transfers/results/
|
|
123
|
-
maleo_identity/models/transfers/results/
|
|
124
|
-
maleo_identity/models/transfers/results/
|
|
125
|
-
maleo_identity/models/transfers/results/
|
|
126
|
-
maleo_identity/models/transfers/results/
|
|
127
|
-
maleo_identity/models/transfers/results/
|
|
128
|
-
maleo_identity/models/transfers/results/
|
|
129
|
-
maleo_identity/models/transfers/results/
|
|
122
|
+
maleo_identity/models/transfers/results/repository/__init__.py,sha256=elgj_Zozrw-yps6PQDblhJkxqb7VLpEsCdpjm3w77Pc,1168
|
|
123
|
+
maleo_identity/models/transfers/results/repository/organization.py,sha256=OS9HSp4mV16PTl73BJMeFgf4rKq2jmo7iENa9F95nxo,879
|
|
124
|
+
maleo_identity/models/transfers/results/repository/organization_role.py,sha256=IcGs4sfcjtMsOKpS6MtSqG6rvSbsy6J-pknR0IXJ7AE,903
|
|
125
|
+
maleo_identity/models/transfers/results/repository/user.py,sha256=ifJ0QpYUDYxfZSV6Bbkdim4vooGiUb3dNum9Ws9CJ94,1171
|
|
126
|
+
maleo_identity/models/transfers/results/repository/user_organization.py,sha256=uxvWCBnV4Z_6tyqul93ei-rQnfWYcwnjJyz640kpzSk,903
|
|
127
|
+
maleo_identity/models/transfers/results/repository/user_organization_role.py,sha256=JIH5z4xxNClxDqX5U7HbxUU5diyGZwIsNF8H1rEHcrg,928
|
|
128
|
+
maleo_identity/models/transfers/results/repository/user_profile.py,sha256=ioNHX1UXhyBuIol87yqTE-58o-HGOmNyxk5W0zUy7PQ,874
|
|
129
|
+
maleo_identity/models/transfers/results/repository/user_system_role.py,sha256=jYbcf7pxJ_IkHOgXCMcrlFh6vftwSsr5mf56C8yXEyg,892
|
|
130
130
|
maleo_identity/types/__init__.py,sha256=U6YJOUefzuJjISnFXE6j7gzQvrZEAHboW3t8Ezgty94,148
|
|
131
|
-
maleo_identity/types/results/__init__.py,sha256=
|
|
131
|
+
maleo_identity/types/results/__init__.py,sha256=aVctfpWK6OLS69ncVmrKCikOOcLwT_EUHdFYM2J1gTg,374
|
|
132
132
|
maleo_identity/types/results/client/__init__.py,sha256=32xGwg-HBi1qJW2RxdTMbGuNKhVT7QAg6RMXE9rKWJ0,1048
|
|
133
133
|
maleo_identity/types/results/client/organization.py,sha256=J8O8ULJkAA42O_HXDrP6zqsneppN5akTKypGag8v8s0,745
|
|
134
134
|
maleo_identity/types/results/client/organization_role.py,sha256=iow_g1WCfQvs-hlLGssYkka81LDWng8CeKTjrSOMI_M,614
|
|
@@ -145,15 +145,15 @@ maleo_identity/types/results/general/user_organization.py,sha256=605vv7BsmH8oVXf
|
|
|
145
145
|
maleo_identity/types/results/general/user_organization_role.py,sha256=Yzpf0-F0Llo8vJwQltcwa7zKIDx7KPCMpep4SdwsPBQ,728
|
|
146
146
|
maleo_identity/types/results/general/user_profile.py,sha256=Vqv6uJcS2VFq_U1TBFla7C2xPo3UxR0dQwrO6bZl3wA,810
|
|
147
147
|
maleo_identity/types/results/general/user_system_role.py,sha256=G99FeKVhHbNuHXJuDZzIzc-ir2OLGrYEKN3m-J9PmR0,836
|
|
148
|
-
maleo_identity/types/results/
|
|
149
|
-
maleo_identity/types/results/
|
|
150
|
-
maleo_identity/types/results/
|
|
151
|
-
maleo_identity/types/results/
|
|
152
|
-
maleo_identity/types/results/
|
|
153
|
-
maleo_identity/types/results/
|
|
154
|
-
maleo_identity/types/results/
|
|
155
|
-
maleo_identity/types/results/
|
|
156
|
-
maleo_identity-0.0.
|
|
157
|
-
maleo_identity-0.0.
|
|
158
|
-
maleo_identity-0.0.
|
|
159
|
-
maleo_identity-0.0.
|
|
148
|
+
maleo_identity/types/results/repository/__init__.py,sha256=O07YHDOFogNx_zm5giNyhqrBTEQRga27yEPJJCsl7uI,1108
|
|
149
|
+
maleo_identity/types/results/repository/organization.py,sha256=uf_9mnsC9U7589dBRzzzFRwev0pS_xl9jgiLSDc_I6w,853
|
|
150
|
+
maleo_identity/types/results/repository/organization_role.py,sha256=mj6lPGGUKibiGv0rYfmK0UMwCxLKB8ggDUL746gccBQ,718
|
|
151
|
+
maleo_identity/types/results/repository/user.py,sha256=00eVZ_qoFRsn8g4P0MHlZGFh313sAukrXNbN3toyhxg,928
|
|
152
|
+
maleo_identity/types/results/repository/user_organization.py,sha256=HKBSrTZv4LMSN3sCQK7EGGTgTeOoPDMGccON628S3bQ,890
|
|
153
|
+
maleo_identity/types/results/repository/user_organization_role.py,sha256=7SVvBMnrDnv9EFIceQmKJFisgjHqy7uN3ISyZy-QEOY,755
|
|
154
|
+
maleo_identity/types/results/repository/user_profile.py,sha256=oyfExKaH6f5vyRdpNLOHQ9SJ5ILDfh2lQ_9m7QmsP3I,843
|
|
155
|
+
maleo_identity/types/results/repository/user_system_role.py,sha256=AZSqXs6kTPBe2w_xS3DegCxiuzyieAb-OWtqvtc76fE,869
|
|
156
|
+
maleo_identity-0.0.32.dist-info/METADATA,sha256=-u03LA6awfWoLeLG_-xm4OV6F0EQOsV7Fx6vYTZlEZk,868
|
|
157
|
+
maleo_identity-0.0.32.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
158
|
+
maleo_identity-0.0.32.dist-info/top_level.txt,sha256=mQENoRr7CBU3vx2PxHXywCHdfBm3AIzVx75IaEsArYE,15
|
|
159
|
+
maleo_identity-0.0.32.dist-info/RECORD,,
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from .organization_role import MaleoIdentityOrganizationRoleQueryResultsTransfers
|
|
3
|
-
from .organization import MaleoIdentityOrganizationQueryResultsTransfers
|
|
4
|
-
from .user_organization_role import MaleoIdentityUserOrganizationRoleQueryResultsTransfers
|
|
5
|
-
from .user_organization import MaleoIdentityUserOrganizationQueryResultsTransfers
|
|
6
|
-
from .user_profile import MaleoIdentityUserProfileQueryResultsTransfers
|
|
7
|
-
from .user_system_role import MaleoIdentityUserSystemRoleQueryResultsTransfers
|
|
8
|
-
from .user import MaleoIdentityUserQueryResultsTransfers
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityQueryResultsTransfers:
|
|
11
|
-
OrganizationRole = MaleoIdentityOrganizationRoleQueryResultsTransfers
|
|
12
|
-
Organization = MaleoIdentityOrganizationQueryResultsTransfers
|
|
13
|
-
UserOrganizationRole = MaleoIdentityUserOrganizationRoleQueryResultsTransfers
|
|
14
|
-
UserOrganization = MaleoIdentityUserOrganizationQueryResultsTransfers
|
|
15
|
-
UserProfile = MaleoIdentityUserProfileQueryResultsTransfers
|
|
16
|
-
UserSystemRole = MaleoIdentityUserSystemRoleQueryResultsTransfers
|
|
17
|
-
User = MaleoIdentityUserQueryResultsTransfers
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.results.service.query import BaseServiceQueryResultsTransfers
|
|
3
|
-
from maleo_identity.models.schemas.results.organization import MaleoIdentityOrganizationResultsSchemas
|
|
4
|
-
|
|
5
|
-
class MaleoIdentityOrganizationQueryResultsTransfers:
|
|
6
|
-
class Row(
|
|
7
|
-
MaleoIdentityOrganizationResultsSchemas.Query,
|
|
8
|
-
BaseServiceQueryResultsTransfers.Row
|
|
9
|
-
): pass
|
|
10
|
-
|
|
11
|
-
class Fail(BaseServiceQueryResultsTransfers.Fail): pass
|
|
12
|
-
|
|
13
|
-
class NoData(BaseServiceQueryResultsTransfers.NoData): pass
|
|
14
|
-
|
|
15
|
-
class SingleData(BaseServiceQueryResultsTransfers.SingleData):
|
|
16
|
-
data:MaleoIdentityOrganizationQueryResultsTransfers.Row
|
|
17
|
-
|
|
18
|
-
class MultipleData(BaseServiceQueryResultsTransfers.PaginatedMultipleData):
|
|
19
|
-
data:list[MaleoIdentityOrganizationQueryResultsTransfers.Row]
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.results.service.query import BaseServiceQueryResultsTransfers
|
|
3
|
-
from maleo_identity.models.schemas.results.organization_role import MaleoIdentityOrganizationRoleResultsSchemas
|
|
4
|
-
|
|
5
|
-
class MaleoIdentityOrganizationRoleQueryResultsTransfers:
|
|
6
|
-
class Row(
|
|
7
|
-
MaleoIdentityOrganizationRoleResultsSchemas.Base,
|
|
8
|
-
BaseServiceQueryResultsTransfers.Row
|
|
9
|
-
): pass
|
|
10
|
-
|
|
11
|
-
class Fail(BaseServiceQueryResultsTransfers.Fail): pass
|
|
12
|
-
|
|
13
|
-
class NoData(BaseServiceQueryResultsTransfers.NoData): pass
|
|
14
|
-
|
|
15
|
-
class SingleData(BaseServiceQueryResultsTransfers.SingleData):
|
|
16
|
-
data:MaleoIdentityOrganizationRoleQueryResultsTransfers.Row
|
|
17
|
-
|
|
18
|
-
class MultipleData(BaseServiceQueryResultsTransfers.PaginatedMultipleData):
|
|
19
|
-
data:list[MaleoIdentityOrganizationRoleQueryResultsTransfers.Row]
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.schemas.result import BaseResultSchemas
|
|
3
|
-
from maleo_foundation.models.transfers.results.service.query import BaseServiceQueryResultsTransfers
|
|
4
|
-
from maleo_identity.models.schemas.results.user import MaleoIdentityUserResultsSchemas
|
|
5
|
-
|
|
6
|
-
class MaleoIdentityUserQueryResultsTransfers:
|
|
7
|
-
class Row(
|
|
8
|
-
MaleoIdentityUserResultsSchemas.Query,
|
|
9
|
-
BaseServiceQueryResultsTransfers.Row
|
|
10
|
-
): pass
|
|
11
|
-
|
|
12
|
-
class Fail(BaseServiceQueryResultsTransfers.Fail): pass
|
|
13
|
-
|
|
14
|
-
class NoData(BaseServiceQueryResultsTransfers.NoData): pass
|
|
15
|
-
|
|
16
|
-
class SingleData(BaseServiceQueryResultsTransfers.SingleData):
|
|
17
|
-
data:MaleoIdentityUserQueryResultsTransfers.Row
|
|
18
|
-
|
|
19
|
-
class MultipleData(BaseServiceQueryResultsTransfers.PaginatedMultipleData):
|
|
20
|
-
data:list[MaleoIdentityUserQueryResultsTransfers.Row]
|
|
21
|
-
|
|
22
|
-
class PasswordRow(
|
|
23
|
-
MaleoIdentityUserResultsSchemas.PasswordQuery,
|
|
24
|
-
BaseResultSchemas.BaseRow
|
|
25
|
-
): pass
|
|
26
|
-
|
|
27
|
-
class SinglePassword(BaseServiceQueryResultsTransfers.SingleData):
|
|
28
|
-
data:MaleoIdentityUserQueryResultsTransfers.PasswordRow
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.results.service.query import BaseServiceQueryResultsTransfers
|
|
3
|
-
from maleo_identity.models.schemas.results.user_organization import MaleoIdentityUserOrganizationResultsSchemas
|
|
4
|
-
|
|
5
|
-
class MaleoIdentityUserOrganizationQueryResultsTransfers:
|
|
6
|
-
class Row(
|
|
7
|
-
MaleoIdentityUserOrganizationResultsSchemas.Base,
|
|
8
|
-
BaseServiceQueryResultsTransfers.Row
|
|
9
|
-
): pass
|
|
10
|
-
|
|
11
|
-
class Fail(BaseServiceQueryResultsTransfers.Fail): pass
|
|
12
|
-
|
|
13
|
-
class NoData(BaseServiceQueryResultsTransfers.NoData): pass
|
|
14
|
-
|
|
15
|
-
class SingleData(BaseServiceQueryResultsTransfers.SingleData):
|
|
16
|
-
data:MaleoIdentityUserOrganizationQueryResultsTransfers.Row
|
|
17
|
-
|
|
18
|
-
class MultipleData(BaseServiceQueryResultsTransfers.PaginatedMultipleData):
|
|
19
|
-
data:list[MaleoIdentityUserOrganizationQueryResultsTransfers.Row]
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.results.service.query import BaseServiceQueryResultsTransfers
|
|
3
|
-
from maleo_identity.models.schemas.results.user_organization_role import MaleoIdentityUserOrganizationRoleResultsSchemas
|
|
4
|
-
|
|
5
|
-
class MaleoIdentityUserOrganizationRoleQueryResultsTransfers:
|
|
6
|
-
class Row(
|
|
7
|
-
MaleoIdentityUserOrganizationRoleResultsSchemas.Base,
|
|
8
|
-
BaseServiceQueryResultsTransfers.Row
|
|
9
|
-
): pass
|
|
10
|
-
|
|
11
|
-
class Fail(BaseServiceQueryResultsTransfers.Fail): pass
|
|
12
|
-
|
|
13
|
-
class NoData(BaseServiceQueryResultsTransfers.NoData): pass
|
|
14
|
-
|
|
15
|
-
class SingleData(BaseServiceQueryResultsTransfers.SingleData):
|
|
16
|
-
data:MaleoIdentityUserOrganizationRoleQueryResultsTransfers.Row
|
|
17
|
-
|
|
18
|
-
class MultipleData(BaseServiceQueryResultsTransfers.PaginatedMultipleData):
|
|
19
|
-
data:list[MaleoIdentityUserOrganizationRoleQueryResultsTransfers.Row]
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.results.service.query import BaseServiceQueryResultsTransfers
|
|
3
|
-
from maleo_identity.models.schemas.results.user_profile import MaleoIdentityUserProfileResultsSchemas
|
|
4
|
-
|
|
5
|
-
class MaleoIdentityUserProfileQueryResultsTransfers:
|
|
6
|
-
class Row(
|
|
7
|
-
MaleoIdentityUserProfileResultsSchemas.Query,
|
|
8
|
-
BaseServiceQueryResultsTransfers.Row
|
|
9
|
-
): pass
|
|
10
|
-
|
|
11
|
-
class Fail(BaseServiceQueryResultsTransfers.Fail): pass
|
|
12
|
-
|
|
13
|
-
class NoData(BaseServiceQueryResultsTransfers.NoData): pass
|
|
14
|
-
|
|
15
|
-
class SingleData(BaseServiceQueryResultsTransfers.SingleData):
|
|
16
|
-
data:MaleoIdentityUserProfileQueryResultsTransfers.Row
|
|
17
|
-
|
|
18
|
-
class MultipleData(BaseServiceQueryResultsTransfers.PaginatedMultipleData):
|
|
19
|
-
data:list[MaleoIdentityUserProfileQueryResultsTransfers.Row]
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from maleo_foundation.models.transfers.results.service.query import BaseServiceQueryResultsTransfers
|
|
3
|
-
from maleo_identity.models.schemas.results.user_system_role import MaleoIdentityUserSystemRoleResultsSchemas
|
|
4
|
-
|
|
5
|
-
class MaleoIdentityUserSystemRoleQueryResultsTransfers:
|
|
6
|
-
class Row(
|
|
7
|
-
MaleoIdentityUserSystemRoleResultsSchemas.Base,
|
|
8
|
-
BaseServiceQueryResultsTransfers.Row
|
|
9
|
-
): pass
|
|
10
|
-
|
|
11
|
-
class Fail(BaseServiceQueryResultsTransfers.Fail): pass
|
|
12
|
-
|
|
13
|
-
class NoData(BaseServiceQueryResultsTransfers.NoData): pass
|
|
14
|
-
|
|
15
|
-
class SingleData(BaseServiceQueryResultsTransfers.SingleData):
|
|
16
|
-
data:MaleoIdentityUserSystemRoleQueryResultsTransfers.Row
|
|
17
|
-
|
|
18
|
-
class MultipleData(BaseServiceQueryResultsTransfers.PaginatedMultipleData):
|
|
19
|
-
data:list[MaleoIdentityUserSystemRoleQueryResultsTransfers.Row]
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from __future__ import annotations
|
|
2
|
-
from .organization_role import MaleoIdentityOrganizationRoleQueryResultsTypes
|
|
3
|
-
from .organization import MaleoIdentityOrganizationQueryResultsTypes
|
|
4
|
-
from .user_organization_role import MaleoIdentityUserOrganizationRoleQueryResultsTypes
|
|
5
|
-
from .user_organization import MaleoIdentityUserOrganizationQueryResultsTypes
|
|
6
|
-
from .user_profile import MaleoIdentityUserProfileQueryResultsTypes
|
|
7
|
-
from .user_system_role import MaleoIdentityUserSystemRoleQueryResultsTypes
|
|
8
|
-
from .user import MaleoIdentityUserQueryResultsTypes
|
|
9
|
-
|
|
10
|
-
class MaleoIdentityQueryResultsTypes:
|
|
11
|
-
OrganizationRole = MaleoIdentityOrganizationRoleQueryResultsTypes
|
|
12
|
-
Organization = MaleoIdentityOrganizationQueryResultsTypes
|
|
13
|
-
UserOrganizationRole = MaleoIdentityUserOrganizationRoleQueryResultsTypes
|
|
14
|
-
UserOrganization = MaleoIdentityUserOrganizationQueryResultsTypes
|
|
15
|
-
UserProfile = MaleoIdentityUserProfileQueryResultsTypes
|
|
16
|
-
UserSystemRole = MaleoIdentityUserSystemRoleQueryResultsTypes
|
|
17
|
-
User = MaleoIdentityUserQueryResultsTypes
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.query.organization import MaleoIdentityOrganizationQueryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityOrganizationQueryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityOrganizationQueryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityOrganizationQueryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityOrganizationQueryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityOrganizationQueryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityOrganizationQueryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityOrganizationQueryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
CreateOrUpdate = Union[
|
|
18
|
-
MaleoIdentityOrganizationQueryResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityOrganizationQueryResultsTransfers.SingleData
|
|
20
|
-
]
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.query.organization_role import MaleoIdentityOrganizationRoleQueryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityOrganizationRoleQueryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityOrganizationRoleQueryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityOrganizationRoleQueryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityOrganizationRoleQueryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityOrganizationRoleQueryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityOrganizationRoleQueryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityOrganizationRoleQueryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.query.user import MaleoIdentityUserQueryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserQueryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserQueryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserQueryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserQueryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserQueryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserQueryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserQueryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
CreateOrUpdate = Union[
|
|
18
|
-
MaleoIdentityUserQueryResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserQueryResultsTransfers.SingleData
|
|
20
|
-
]
|
|
21
|
-
|
|
22
|
-
GetSinglePassword = Union[
|
|
23
|
-
MaleoIdentityUserQueryResultsTransfers.Fail,
|
|
24
|
-
MaleoIdentityUserQueryResultsTransfers.SinglePassword
|
|
25
|
-
]
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from typing import Union
|
|
2
|
-
from maleo_identity.models.transfers.results.query.user_organization import MaleoIdentityUserOrganizationQueryResultsTransfers
|
|
3
|
-
|
|
4
|
-
class MaleoIdentityUserOrganizationQueryResultsTypes:
|
|
5
|
-
GetMultiple = Union[
|
|
6
|
-
MaleoIdentityUserOrganizationQueryResultsTransfers.Fail,
|
|
7
|
-
MaleoIdentityUserOrganizationQueryResultsTransfers.NoData,
|
|
8
|
-
MaleoIdentityUserOrganizationQueryResultsTransfers.MultipleData
|
|
9
|
-
]
|
|
10
|
-
|
|
11
|
-
GetSingle = Union[
|
|
12
|
-
MaleoIdentityUserOrganizationQueryResultsTransfers.Fail,
|
|
13
|
-
MaleoIdentityUserOrganizationQueryResultsTransfers.NoData,
|
|
14
|
-
MaleoIdentityUserOrganizationQueryResultsTransfers.SingleData
|
|
15
|
-
]
|
|
16
|
-
|
|
17
|
-
Create = Union[
|
|
18
|
-
MaleoIdentityUserOrganizationQueryResultsTransfers.Fail,
|
|
19
|
-
MaleoIdentityUserOrganizationQueryResultsTransfers.SingleData
|
|
20
|
-
]
|